fix: [trackers] typo

This commit is contained in:
terrtia 2024-09-12 09:28:32 +02:00
parent 9323ac39e8
commit a595bb5175
No known key found for this signature in database
GPG key ID: 1E1B1F50D84613D0

View file

@ -782,7 +782,7 @@ def get_trackers_dashboard(user_org, user_id):
for raw in r_tracker.lrange('trackers:dashboard', 0, -1):
tracker_uuid, timestamp, obj_type, subtype, obj_id = raw.split(':', 4)
tracker = Tracker(tracker_uuid)
if not Tracker.check_level(user_org, user_id):
if not tracker.check_level(user_org, user_id):
continue
meta = tracker.get_meta(options={'description', 'tags'})
if not meta.get('type'):