Real Debrid Manager api dashboard debrid api-rest torrents rdm realdebrid real-debrid Updated May 27, 2024 Svelte arvida42 / jackettio Star 68 Code Issues Pull requests Stremio addon that resolve streams using Jackett and Debrid. It seamlessly integrates with private trackers. debrid stremio...
Add a description, image, and links to thestremio-real-debrid-addontopic page so that developers can more easily learn about it. To associate your repository with thestremio-real-debrid-addontopic, visit your repo's landing page and select "manage topics." ...
import { StremioRouter } from "./Stremio.js" @@ -83,123 +75,27 @@ export const RealDebridLive = Effect.gen(function* () { client.get(`/torrents/info/${id}`).pipe( Effect.flatMap(decodeTorrentInfo), Effect.scoped, Effect.tapErrorCause(Effect.log), Effect.retry({ while: err => ...
import { cacheWithSpan, magnetFromHash } from "./Utils.js" import { StremioRouter } from "./Stremio.js" import { SourceStream } from "./Domain/SourceStream.js" import { dataLoader } from "@effect/experimental/RequestResolver" @@ -98,14 +99,19 @@ export const RealDebridLive = Effect...
@@ -44,14 +44,13 @@ export const RealDebridLive = Effect.gen(function* () { ), ), HttpClient.filterStatusOk, HttpClient.transformResponse( Effect.retry({ while: err => err._tag === "ResponseError" && err.response.status >= 429, ...