Add patch

fix armv6 modes
This commit is contained in:
zzz
2025-03-08 09:00:02 -05:00
parent e3a4a54802
commit 499f3182bd
3 changed files with 6 additions and 0 deletions

0
installer/lib/wrapper/linux-armv6/i2psvc Executable file → Normal file
View File

0
installer/lib/wrapper/linux-armv6/libwrapper.so Executable file → Normal file
View File

View File

@ -468,6 +468,12 @@ public class WrapperBootstrap
{
version = version.substring( 0, i );
}
// I2P 24-ea
i = version.indexOf( "-" );
if ( i != -1 )
{
version = version.substring( 0, i );
}
}
return Integer.parseInt( version );
}