diff --git a/etiquette/helpers.py b/etiquette/helpers.py index 1ebfc08..d77d9d0 100644 --- a/etiquette/helpers.py +++ b/etiquette/helpers.py @@ -317,7 +317,7 @@ def hash_photoset(photos) -> str: photo_ids = sorted(set(p.id for p in photos)) for photo_id in photo_ids: - hasher.update(photo_id.encode('utf-8')) + hasher.update(str(photo_id).encode('utf-8')) return hasher.hexdigest()