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 1804bb0 commit 679f2efCopy full SHA for 679f2ef
package.json
@@ -83,7 +83,7 @@
83
"protocols": [
84
{
85
"name": "Gitify",
86
- "schemes": ["gitify", "gitify-dev"]
+ "schemes": ["gitify"]
87
}
88
],
89
"mac": {
src/main/main.ts
@@ -38,9 +38,7 @@ const menuBuilder = new MenuBuilder(mb);
38
const contextMenu = menuBuilder.buildMenu();
39
40
// Register your app as the handler for a custom protocol
41
-const protocolName =
42
- process.env.NODE_ENV === 'development' ? 'gitify-dev' : 'gitify';
43
-app.setAsDefaultProtocolClient(protocolName);
+app.setAsDefaultProtocolClient('gitify');
44
45
if (isMacOS() || isWindows()) {
46
/**
0 commit comments