Create a downloader for the gamedrivers bypass

This commit is contained in:
Shisuys
2025-01-26 10:41:08 -03:00
parent b4014535e8
commit 6da648b21c
4 changed files with 13 additions and 0 deletions

View File

@@ -260,6 +260,16 @@ export class DownloadManager {
case Downloader.PixelDrain: {
const id = game.uri!.split("/").pop();
return {
action: "start",
game_id: game.id,
url: `https://pixeldrain.com/api/file/${id}?download`,
save_path: game.downloadPath!,
};
}
case Downloader.GameDrive: {
const id = game.uri!.split("/").pop();
return {
action: "start",
game_id: game.id,