fix: open dev tools on right window

This commit is contained in:
Chubby Granny Chaser 2025-02-01 20:12:49 +00:00
parent 0c8bccc6f3
commit 59a32c7189
No known key found for this signature in database
2 changed files with 5 additions and 5 deletions

View file

@ -88,7 +88,8 @@ export const getDownloadersForUri = (uri: string) => {
if (uri.startsWith("https://pixeldrain.com")) return [Downloader.PixelDrain];
if (uri.startsWith("https://qiwi.gg")) return [Downloader.Qiwi];
if (uri.startsWith("https://datanodes.to")) return [Downloader.Datanodes];
if (uri.startsWith("https://www.mediafire.com")) return [Downloader.Mediafire];
if (uri.startsWith("https://www.mediafire.com"))
return [Downloader.Mediafire];
if (realDebridHosts.some((host) => uri.startsWith(host)))
return [Downloader.RealDebrid];