Notifications - extra check for system default #4119

This commit is contained in:
dgtlmoon
2026-05-05 06:20:12 +02:00
parent e25387f588
commit 362cc40e90
3 changed files with 39 additions and 3 deletions
@@ -65,6 +65,9 @@ def notification_format_align_with_apprise(n_format : str):
:return:
"""
if not n_format:
return NotifyFormat.TEXT.value
if n_format.startswith('html'):
# Apprise only knows 'html' not 'htmlcolor' etc, which shouldnt matter here
n_format = NotifyFormat.HTML.value