From 13a3d5c27e9012c50a9be6b114acc8a1cd8906b1 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Sun, 25 Sep 2022 07:45:02 +0200 Subject: [PATCH] fix --- files/routes/static.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/routes/static.py b/files/routes/static.py index f2b4a45de..042e50cb6 100644 --- a/files/routes/static.py +++ b/files/routes/static.py @@ -454,7 +454,7 @@ if SITE == 'pcmemes.net': if 'wacht' in count: return process_streamer(id, '') - count = int(count) + count = int(count.replace('.', '')) t = live_thumb_regex.search(text) @@ -468,7 +468,7 @@ if SITE == 'pcmemes.net': y = offline_details_regex.search(text) if y: - views = y.group(3).replace('.', ',') + views = y.group(3).replace('.', '') quantity = int(y.group(1)) unit = y.group(2)