diff --git a/hive/server/condenser_api/methods.py b/hive/server/condenser_api/methods.py
index a7e9b865db804c188d4b4c81ffa5e3e789dce3e4..fe0a5bb9cf730659f0430aa8c888eca5e98795f2 100644
--- a/hive/server/condenser_api/methods.py
+++ b/hive/server/condenser_api/methods.py
@@ -129,7 +129,7 @@ async def get_content_replies(context, author: str, permlink: str):
              )
              ORDER BY post_id"""
 
-    result=await db.query_all(sql, author=author, permlink = permlink, limit=1000)
+    result=await db.query_all(sql, author=author, permlink = permlink, limit=5000)
 
     posts = await resultset_to_posts(db=db, resultset=result, truncate_body=0)
     return posts