Fixed bug

This commit is contained in:
Jens 2023-07-02 00:31:09 +02:00
parent d85a199117
commit 291e0c41af
3 changed files with 3 additions and 2 deletions

View File

@ -434,7 +434,7 @@ public class ActivityMainScreen extends ActivityGeneric
else
activityMainScreenInstance.checkForNews();
if(BuildConfig.FLAVOR.equals("apkFlavor") && Settings.automaticUpdateCheck)
if(BuildConfig.FLAVOR.equals(AutomationService.flavor_name_apk) && Settings.automaticUpdateCheck)
{
Calendar now = Calendar.getInstance();
if (Settings.lastUpdateCheck == Settings.default_lastUpdateCheck || now.getTimeInMillis() >= Settings.lastUpdateCheck + (long)(Settings.updateCheckFrequencyDays * 24 * 60 * 60 * 1000))

View File

@ -760,7 +760,7 @@ public class Miscellaneous extends Service
else
replacement = "unknownVariable";
source = source.substring(0, pos1) + replacement + source.substring(pos2);
source = source.substring(0, pos1) + replacement + source.substring(pos2 +1);
}
// Miscellaneous.logEvent("i", "URL after replace", source);

View File

@ -0,0 +1 @@
* Fixed: [variable-name] was incorrectly replaced with an ] at the end