any-env-and-bind-address #58

Merged
moon merged 7 commits from any-env-and-bind-address into dev 2025-06-13 14:54:28 -07:00
Showing only changes of commit f4f847e577 - Show all commits

View file

@ -100,7 +100,7 @@ ADMINS = json.loads(config['application']['DefaultAdmins'])
# SQLite Database location
DB_PATH = config['application'].get('DatabaseLocation', './gacha_game.db')
# Whether to enable the instance whitelist
USE_WHITELIST = config['application']['UseWhitelist']
USE_WHITELIST = config['application'].getboolean('UseWhitelist', True)
NOTIFICATION_POLL_INTERVAL = int(config['notification']['PollInterval'])
NOTIFICATION_BATCH_SIZE = int(config['notification']['BatchSize'])