diff --git a/store.py b/store.py index 3bdcd65..c82bc40 100644 --- a/store.py +++ b/store.py @@ -16,6 +16,6 @@ async def get_all_removed(uid): # Fetch the value for each key value = await redis.get(key) if value: - texts.append(int(value)) + texts.append(str(value)) return texts