Skip to content

Commit

Permalink
Fix bug preventing local mod install (#558)
Browse files Browse the repository at this point in the history
  • Loading branch information
dallmeyer authored Sep 15, 2024
1 parent cb40fc7 commit cf06ce7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/rpc/features.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,12 +144,12 @@ export async function getModSources(): Promise<ModSource[]> {

export async function extractNewMod(
gameName: string,
zipPath: string,
bundlePath: string,
modSource: string,
): Promise<InstallationOutput> {
return await invoke_rpc(
"extract_new_mod",
{ gameName, zipPath, modSource },
{ gameName, bundlePath, modSource },
() => failed("Failed to extract mod"),
);
}
Expand Down

0 comments on commit cf06ce7

Please sign in to comment.