|
|
@ -29,7 +29,7 @@ export default class IpcInterface extends IpcServerService |
|
|
|
/** |
|
|
|
* Boot the IPC interface |
|
|
|
*/ |
|
|
|
public async boot() { |
|
|
|
public override async boot() { |
|
|
|
this.torrentClient = this.app.service<TorrentClient>("Torrent Client"); |
|
|
|
await super.boot(); |
|
|
|
} |
|
|
@ -37,7 +37,7 @@ export default class IpcInterface extends IpcServerService |
|
|
|
/** |
|
|
|
* Install the the event handlers |
|
|
|
*/ |
|
|
|
protected installMessageHandlers() { |
|
|
|
protected override installMessageHandlers() { |
|
|
|
this.addMessageHandler("add", this.add); |
|
|
|
this.addMessageHandler("remove", this.remove); |
|
|
|
this.addMessageHandler("list", this.list); |
|
|
|