From c20fc347047e29c2820466f61c3312e776127512 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Thu, 22 Sep 2022 04:20:47 +0200 Subject: [PATCH] dfs --- files/routes/static.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/files/routes/static.py b/files/routes/static.py index 651548383a..b1ef00c2c4 100644 --- a/files/routes/static.py +++ b/files/routes/static.py @@ -486,6 +486,7 @@ if SITE_NAME == 'PCM': offline.append((req.url, t.group(1), y.group(2))) else: y = offline_regex.search(txt) - offline.append((req.url, y.group(2), y.group(1))) + try: offline.append((req.url, y.group(2), y.group(1))) + except: print(x) return render_template(f'live.html', v=v, live=live, offline=offline) \ No newline at end of file