diff options
Diffstat (limited to 'libs/apprise/plugins/NotifyGitter.py')
-rw-r--r-- | libs/apprise/plugins/NotifyGitter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/apprise/plugins/NotifyGitter.py b/libs/apprise/plugins/NotifyGitter.py index d94d41469..577959836 100644 --- a/libs/apprise/plugins/NotifyGitter.py +++ b/libs/apprise/plugins/NotifyGitter.py @@ -284,7 +284,7 @@ class NotifyGitter(NotifyBase): # By default set wait to None wait = None - if self.ratelimit_remaining == 0: + if self.ratelimit_remaining <= 0: # Determine how long we should wait for or if we should wait at # all. This isn't fool-proof because we can't be sure the client # time (calling this script) is completely synced up with the |