fixed postprocessor args

This commit is contained in:
2025-02-03 10:10:58 +01:00
parent 2f2eca2bff
commit 3dd2f0995b

View File

@@ -41,10 +41,10 @@ export class RPCClient {
})
}
private argsSanitizer(args: string) {
private argsSanitizer(args: string): string[] {
return args
.split(' ')
.map(a => a.trim().replaceAll("'", '').replaceAll('"', ''))
.map(a => a.trim().replaceAll('"', ''))
.filter(Boolean)
}