Ticket use sending location id number first, instead of full name

This commit is contained in:
SimplifiedPrivacy 2026-05-21 09:43:06 -04:00
parent 012f9d7025
commit 756b12a226

View file

@ -1625,6 +1625,7 @@ class Worker(QObject):
pass
for source in sources:
add(getattr(source, 'id', None)) # sending the location id (a number)
add(getattr(source, 'country_name', None))
add(getattr(source, 'name', None))
add(getattr(source, 'code', None))