mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-30 06:11:03 +00:00
fix: add support for vikingfile alternative domain in downloader logic
This commit is contained in:
@@ -142,7 +142,10 @@ export const getDownloadersForUri = (uri: string) => {
|
||||
if (uri.startsWith("https://fuckingfast.co")) {
|
||||
return [Downloader.FuckingFast];
|
||||
}
|
||||
if (uri.startsWith("https://vikingfile.com")) {
|
||||
if (
|
||||
uri.startsWith("https://vikingfile.com") ||
|
||||
uri.startsWith("https://vik1ngfile.site")
|
||||
) {
|
||||
return [Downloader.VikingFile];
|
||||
}
|
||||
if (uri.startsWith("https://www.rootz.so")) {
|
||||
|
||||
Reference in New Issue
Block a user