mirror of https://github.com/caronc/apprise
Windows notifications: Correct WM_DESTROY return value (#863)
Signed-off-by: Nathan Rennie-Waldock <nathan.renniewaldock@gmail.com>pull/867/head
parent
76d44a3179
commit
9b4d3450eb
|
@ -142,7 +142,7 @@ class NotifyWindows(NotifyBase):
|
|||
win32gui.Shell_NotifyIcon(win32gui.NIM_DELETE, nid)
|
||||
win32api.PostQuitMessage(0)
|
||||
|
||||
return None
|
||||
return 0
|
||||
|
||||
def send(self, body, title='', notify_type=NotifyType.INFO, **kwargs):
|
||||
"""
|
||||
|
|
Loading…
Reference in New Issue