Skip to content

Commit

Permalink
fix: Fix incorrect link for Kubo version in tray icon (#2473)
Browse files Browse the repository at this point in the history
  • Loading branch information
is-this-echo committed May 4, 2023
1 parent 88b1863 commit 540c639
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tray.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ function buildMenu (ctx) {
label: hasCustomBinary()
? i18n.t('customIpfsBinary')
: `kubo ${GO_IPFS_VERSION}`,
click: () => { shell.openExternal(`https://github.com/ipfs/kubo/releases/v${GO_IPFS_VERSION}`) }
click: () => { shell.openExternal(`https://github.com/ipfs/kubo/releases/v${GO_IPFS_VERSION.replace(/^\^/, '')}`) }
},
{ type: 'separator' },
{
Expand Down

0 comments on commit 540c639

Please sign in to comment.