From 79b7ea77f4b59c8960e7a60c50718b911094f008 Mon Sep 17 00:00:00 2001 From: gru Date: Sat, 30 Aug 2025 17:59:25 +0200 Subject: [PATCH] Update app.py --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index ad98132..2fc29fa 100644 --- a/app.py +++ b/app.py @@ -296,7 +296,7 @@ def add_recent_link(url, target_ip): pipe.lpush(key, new_item) if filtered: pipe.rpush(key, *filtered[:99]) - pipe.ltrim(key, 0, 9) + pipe.ltrim(key, 0, 99) pipe.execute() redis_client.incr("stats:recent_links_added")