From f99f5fef8bbcb92d17bc149efbe27bec3cd43fbb Mon Sep 17 00:00:00 2001 From: LimeDrive Date: Fri, 26 Jul 2024 23:40:56 +0200 Subject: [PATCH] update stream_fusion/static/index.html and parse_config.py --- stream_fusion/static/index.html | 6 ++++-- stream_fusion/utils/parse_config.py | 4 ++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/stream_fusion/static/index.html b/stream_fusion/static/index.html index 42fda1a..3680ec6 100644 --- a/stream_fusion/static/index.html +++ b/stream_fusion/static/index.html @@ -188,8 +188,8 @@

Debrid Provider Configuration

- - +
@@ -227,6 +227,8 @@

Metadata Provider

Use Cinemeta for simple metadata.

+

Pour YggTorrent utilisé TMDB obligatoirement.

diff --git a/stream_fusion/utils/parse_config.py b/stream_fusion/utils/parse_config.py index e37a9cf..21895b6 100644 --- a/stream_fusion/utils/parse_config.py +++ b/stream_fusion/utils/parse_config.py @@ -19,4 +19,8 @@ def parse_config(b64config): config["yggPassword"] = "FakePassword" if "yggUsername" not in config: config["yggUsername"] = "FakeUsername" + + # Break old config on debrid untested + if config["service"] == "AllDebrid" or "Premiumize": + raise Exception("Old config detected, please reconfigure") return config \ No newline at end of file