@@ -54,7 +54,7 @@ class AsyncRedisService:
"""
key = f"{platform}_user_crawler_index"
pool = RedisManager.get_pool()
- return await pool.get(key)
+ return await int(pool.get(key))
async def set_current_user_index(self, platform: str, user_index: int):