Skip to content
This repository has been archived by the owner on Jul 26, 2023. It is now read-only.

Commit

Permalink
fix(core): missing update to nanoid
Browse files Browse the repository at this point in the history
The code was still referencing uuid.
  • Loading branch information
markmcdowell committed Aug 11, 2020
1 parent b3b8804 commit 347d407
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/desktop-core/src/main/ipc/nodeIpcExternal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class NodeIpcExternal implements IIpcExternal {
const appName = app.name.toLowerCase();
const appSpace = `${this.appSpace}.${appName}.`;
ipc.config.appspace = context === undefined ? appSpace : `${appSpace}${context}.`;
ipc.config.id = uuid();
ipc.config.id = nanoid();
ipc.config.maxRetries = 0;
ipc.config.silent = true;
ipc.connectTo(this.connectId, () => {
Expand Down

0 comments on commit 347d407

Please sign in to comment.