We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c7e824 commit 9ac0e41Copy full SHA for 9ac0e41
src/transport/IPC.ts
@@ -118,7 +118,7 @@ export class IPCTransport extends Transport {
118
119
this.client.emit(
120
"debug",
121
- `CLIENT | Found ${useablePath.length} Discord client path;\n${useablePath.join("\n")}`
+ `CLIENT | Found ${useablePath.length} Discord client path;\n${useablePath.map(x => Array.isArray(x) ? `${x[1]}:${x[0]}` : x).join("\n")}`
122
);
123
124
if (useablePath.length < 0)
0 commit comments