Browse Source

Trorent API: Fix return type of 'has' method

dev
David Ludwig 4 years ago
parent
commit
8ff03a6f87
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      api/torrent/src/IpcClient.ts

+ 1
- 1
api/torrent/src/IpcClient.ts View File

@ -59,7 +59,7 @@ export class IpcClient<M extends Microservice = Microservice> extends IpcClientS
console.error(response.error);
throw new Error("Failed to check if a torrent exists");
}
return <Boolean>response.data;
return <boolean>response.data;
}
/**


Loading…
Cancel
Save