From 0dbbbf435987ffc6fec996036d6b3cdcefce6f3c Mon Sep 17 00:00:00 2001 From: Mr Chen Date: Thu, 11 Jul 2024 13:28:44 +0800 Subject: [PATCH] Update simpleping_index.py --- plugins/simpleping/simpleping_index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/simpleping/simpleping_index.py b/plugins/simpleping/simpleping_index.py index 6d722b100..895c996d3 100755 --- a/plugins/simpleping/simpleping_index.py +++ b/plugins/simpleping/simpleping_index.py @@ -33,7 +33,7 @@ def pingData(args = ()): atype = args['type'] if atype == 'pos': pos = args['pos'] - data = conn.where('created_unix>?',(pos,)).limit("1000").select() + data = conn.where('created_unix>?',(pos,)).limit("10000").select() elif atype == 'range': start = args['start'] end = args['end']