feat: remove the need to have a pro torbox acc

This commit is contained in:
Goldy
2024-11-24 18:22:14 +01:00
parent 6b0802ac87
commit 253bfeae4f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ class TorBox:
f"{self.api_url}/user/me?settings=false"
)
check_premium = await check_premium.text()
if '"success":true' in check_premium and '"plan":0' not in check_premium:
if '"success":true' in check_premium:
return True
except Exception as e:
logger.warning(f"Exception while checking premium status on TorBox: {e}")
+1 -1
View File
@@ -542,8 +542,8 @@
<div class="form-item">
<sl-select id="debridService" value="debridlink" label="Debrid Service" placeholder="Select debrid service">
<sl-option value="debridlink">Debrid-Link</sl-option>
<sl-option value="alldebrid">All-Debrid</sl-option>
<sl-option value="torbox">TorBox</sl-option>
<sl-option value="alldebrid">All-Debrid</sl-option>
<sl-option value="premiumize">Premiumize</sl-option>
<sl-option value="realdebrid">Real-Debrid</sl-option>
</sl-select>