Skip to content

Commit

Permalink
fix: [tracker] fix webhook
Browse files Browse the repository at this point in the history
  • Loading branch information
Terrtia committed May 26, 2023
1 parent b3cafd2 commit 1e7b527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/lib/Tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def get_user(self):
return self._get_field('user_id')

def webhook_export(self):
return r_tracker.hexists(f'tracker:mail:{self.uuid}', 'webhook')
return r_tracker.hexists(f'tracker:{self.uuid}', 'webhook')

def get_webhook(self):
return r_tracker.hget(f'tracker:{self.uuid}', 'webhook')
Expand Down

0 comments on commit 1e7b527

Please sign in to comment.