You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On systems where XDG_DATA_DIRS is not set (e.g., debian), trying to
open URLs from the Electron app using xdg-open fails.
To reproduce:
unset XDG_DATA_DIRS
run the AppImage
Click a link in the AppImage app. See on
the console:
gvfs-open: https://something.com: error opening
location: No application is registered as handling this file
Hint:
The AppRun script does things like
export XDG_DATA_DIRS="./share/:${XDG_DATA_DIRS}"
export XDG_DATA_DIRS="${APPDIR}/usr/share:${XDG_DATA_DIRS}"
It should also put /usr/share/gnome:/usr/local/share/:/usr/share/ in
the list of paths if they are not there yet
The text was updated successfully, but these errors were encountered:
On systems where XDG_DATA_DIRS is not set (e.g., debian), trying to
open URLs from the Electron app using xdg-open fails.
To reproduce:
unset XDG_DATA_DIRS
run the AppImage
Click a link in the AppImage app. See on
the console:
gvfs-open: https://something.com: error opening
location: No application is registered as handling this file
Hint:
The AppRun script does things like
export XDG_DATA_DIRS="./share/:${XDG_DATA_DIRS}"
export XDG_DATA_DIRS="${APPDIR}/usr/share:${XDG_DATA_DIRS}"
It should also put /usr/share/gnome:/usr/local/share/:/usr/share/ in
the list of paths if they are not there yet
The text was updated successfully, but these errors were encountered: