Skip to content
Snippets Groups Projects
Commit 2966aaa5 authored by jvandenbroek's avatar jvandenbroek
Browse files

Fix for not publishing details when ignored words empty

parent f7a5ef50
No related branches found
No related tags found
No related merge requests found
...@@ -19,7 +19,9 @@ def load_settings(): ...@@ -19,7 +19,9 @@ def load_settings():
mqttprogress = getSetting('mqttprogress').lower() == "true" mqttprogress = getSetting('mqttprogress').lower() == "true"
mqttinterval = int(getSetting('mqttinterval')) mqttinterval = int(getSetting('mqttinterval'))
mqttdetails = getSetting('mqttdetails').lower() == "true" mqttdetails = getSetting('mqttdetails').lower() == "true"
mqttignore = getSetting('mqttignore').lower().split(',') mqttignore = getSetting('mqttignore')
if mqttignore:
mqttignore = mqttignore.lower().split(',')
activeplayerid=-1 activeplayerid=-1
activeplayertype="" activeplayertype=""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment