diff options
Diffstat (limited to 'libs/apprise/plugins/NotifyFaast.py')
-rw-r--r-- | libs/apprise/plugins/NotifyFaast.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libs/apprise/plugins/NotifyFaast.py b/libs/apprise/plugins/NotifyFaast.py index 39df2c219..4c7b1ad70 100644 --- a/libs/apprise/plugins/NotifyFaast.py +++ b/libs/apprise/plugins/NotifyFaast.py @@ -91,6 +91,8 @@ class NotifyFaast(NotifyBase): # Associate an image with our post self.include_image = include_image + return + def send(self, body, title='', notify_type=NotifyType.INFO, **kwargs): """ Perform Faast Notification @@ -161,7 +163,7 @@ class NotifyFaast(NotifyBase): return True - def url(self): + def url(self, privacy=False, *args, **kwargs): """ Returns the URL built dynamically based on specified arguments. """ @@ -176,7 +178,7 @@ class NotifyFaast(NotifyBase): return '{schema}://{authtoken}/?{args}'.format( schema=self.protocol, - authtoken=NotifyFaast.quote(self.authtoken, safe=''), + authtoken=self.pprint(self.authtoken, privacy, safe=''), args=NotifyFaast.urlencode(args), ) |