From 6a021c4736324763891cf7bebd5297a30d9087cb Mon Sep 17 00:00:00 2001 From: TLSM Date: Wed, 26 Oct 2022 17:03:21 -0400 Subject: [PATCH] PCM /live: scraping scheduled streams revision. --- 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 08db90a5d5..ee9f93d403 100644 --- a/files/routes/static.py +++ b/files/routes/static.py @@ -437,13 +437,13 @@ if SITE == 'pcmemes.net': if count == '1 παρακολουθεί τώρα': count = "1" - if 'περιμένει' in count: + if 'περιμένει' in count or 'waiting' in count: if live != '': return process_streamer(id, '') else: return None - count = int(count.replace('.', '').replace(' waiting', '')) + count = int(count.replace('.', '')) t = live_thumb_regex.search(text)