fix: [objects] get_object, None pgp name

This commit is contained in:
terrtia 2024-09-12 20:05:33 +02:00
parent a3eb285ce1
commit 3569498d5a
No known key found for this signature in database
GPG key ID: 1E1B1F50D84613D0

View file

@ -72,6 +72,7 @@ def sanitize_objs_types(objs, default=False):
def get_object(obj_type, subtype, obj_id): def get_object(obj_type, subtype, obj_id):
if subtype == 'None': if subtype == 'None':
subtype = None subtype = None
obj_id = str(obj_id)
if not subtype: if not subtype:
if obj_type == 'item': if obj_type == 'item':
return Item(obj_id) return Item(obj_id)