add prefix sanity check to init
tlapbot will throw runtime error if prefix isn't a single character longer prefixes would break the bot bc of how redeems_handler.py works
This commit is contained in:
parent
92a2a77c80
commit
6a3e74cdec
|
@ -30,6 +30,11 @@ def create_app(test_config=None):
|
|||
gunicorn_logger = logging.getLogger('gunicorn.error')
|
||||
app.logger.handlers = gunicorn_logger.handlers
|
||||
app.logger.setLevel(gunicorn_logger.level)
|
||||
|
||||
# Check for wrong config that would break Tlapbot
|
||||
if len(app.config['PREFIX']) != 1:
|
||||
raise RuntimeError("Prefix is >1 character. "
|
||||
"Change your config to set 1-character prefix.")
|
||||
|
||||
# prepare webhooks and redeem dashboard blueprints
|
||||
from . import owncast_webhooks
|
||||
|
|
Loading…
Reference in New Issue