We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c5da60 commit 082d3e9Copy full SHA for 082d3e9
1 file changed
server/services/rTorrent/clientGatewayService.ts
@@ -119,11 +119,7 @@ class RTorrentClientGatewayService extends ClientGatewayService {
119
})),
120
),
121
])
122
- .then(this.processClientRequestSuccess, this.processRTorrentRequestError)
123
- .then((response: Array<Array<string | number>>) => {
124
- const hashes = response.flat(2).filter((value) => typeof value === 'string') as string[];
125
- result.push(...hashes);
126
- });
+ .then(this.processClientRequestSuccess, this.processRTorrentRequestError);
127
} else {
128
await Promise.all(
129
processedFiles.map(async (file) => {
0 commit comments