Skip to content

Commit

Permalink
feat: a bit of code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
xhayper committed Jun 19, 2023
1 parent a58b0eb commit 1458dbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transport/IPC.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export class IPCTransport extends Transport {
): Promise<net.Socket | undefined> => {
const socketPath = formatFunc(id);

if (!socketPath || socketPath.trim() === "") return undefined;
if (!socketPath || socketPath.trim() === "") return;

if (!(await exists(path.dirname(socketPath)))) {
return;
Expand Down

0 comments on commit 1458dbf

Please sign in to comment.