fix links to filter items with unicode

This commit is contained in:
j 2025-10-16 13:06:53 +01:00
commit 541aa201bf

View file

@ -75,6 +75,7 @@ def get_positions(ids, pos, decode_id=False):
if decode_id:
positions[i] = ids.index(ox.fromAZ(i))
else:
i = unicodedata.normalize('NFKD', i)
positions[i] = ids.index(i)
except:
pass