From cc31c7e22e6559f81f0a94061a1676ed6eadc6b4 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Fri, 1 May 2026 18:40:31 -0400 Subject: [PATCH] [locations] Continue to adjust thresholds --- vrobbler/apps/locations/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vrobbler/apps/locations/utils.py b/vrobbler/apps/locations/utils.py index de382af..8d0d55a 100644 --- a/vrobbler/apps/locations/utils.py +++ b/vrobbler/apps/locations/utils.py @@ -9,8 +9,8 @@ logger = logging.getLogger(__name__) # Speed thresholds in meters per second SPEED_THRESHOLDS = { "at_rest": 0.5, - "walking": 1.5, - "running": 3.5, + "walking": 1, + "running": 2.5, "bicycling": 6.5, "driving": 10, }