Notification icon missing
Nickwiz opened this issue · 1 comments
Summary:
Notifications uses non-existing icon /var/lib/nordvpn/icon.svg
Detail:
The notify
function uses the constant IconPath
when sending notifications:
nordvpn-linux/daemon/notify.go
Lines 45 to 55 in 6fd88a4
where IconPath
is defined in constants; typically as /var/lib/nordvpn/icon.svg
:
nordvpn-linux/daemon/constants.go
Line 16 in 6fd88a4
On install the icon file is copied to /usr/share/icons/hicolor/scalable/apps/nordvpn.svg
:
nordvpn-linux/ci/nfpm/template.yaml
Lines 93 to 94 in 6fd88a4
but no link or copy is made to /var/lib/
.
One could define IconPath
to use the /usr/share/icons
path. (Or if any other approach is better).
Quick Fix:
A quick fix for most until remedied.
sudo ln -s /usr/share/icons/hicolor/scalable/apps/nordvpn.svg /var/lib/nordvpn/icon.svg