Merge pull request #1363 from adamoutler/allow-other-users

Allow other users (Non-Synology)
This commit is contained in:
Jokob @NetAlertX
2025-12-21 20:25:16 +00:00
committed by GitHub
21 changed files with 761 additions and 380 deletions

View File

@@ -37,7 +37,7 @@ def read_config_file():
configFile = read_config_file()
timeZoneSetting = configFile['TIMEZONE']
timeZoneSetting = configFile.get('TIMEZONE', default_tz)
if timeZoneSetting not in all_timezones:
timeZoneSetting = default_tz
timeZone = pytz.timezone(timeZoneSetting)