From 35f2791c72a8edf6d6ab16e8a09ceb6c4f341807 Mon Sep 17 00:00:00 2001 From: Mr Chen Date: Thu, 11 Jul 2024 13:32:16 +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 895c996d3..e4da43d11 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("10000").select() + data = conn.where('created_unix>?',(pos,)).limit("3000").select() elif atype == 'range': start = args['start'] end = args['end']