We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent add2c65 commit f0ed4f6Copy full SHA for f0ed4f6
changedetectionio/flask_app.py
@@ -338,8 +338,11 @@ def rss():
338
339
# @todo needs a .itemsWithTag() or something - then we can use that in Jinaj2 and throw this away
340
for uuid, watch in datastore.data['watching'].items():
341
+ # @todo tag notification_muted skip also (improve Watch model)
342
+ if watch.get('notification_muted'):
343
+ continue
344
if limit_tag and not limit_tag in watch['tags']:
- continue
345
346
watch['uuid'] = uuid
347
sorted_watches.append(watch)
348
0 commit comments