Windows packager: use Github URL for remoteRelease

This commit is contained in:
Feross Aboukhadijeh
2016-04-04 18:23:27 -07:00
parent 3d8429fb12
commit 82c9e8f8ab
3 changed files with 5 additions and 3 deletions

View File

@@ -288,14 +288,14 @@ function getAppMenuTemplate () {
},
{
label: 'Contribute on GitHub',
click: () => electron.shell.openExternal('https://github.com/feross/webtorrent-desktop')
click: () => electron.shell.openExternal(config.GITHUB_URL)
},
{
type: 'separator'
},
{
label: 'Report an Issue...',
click: () => electron.shell.openExternal('https://github.com/feross/webtorrent-desktop/issues')
click: () => electron.shell.openExternal(config.GITHUB_URL + '/issues')
}
]
}