diff --git a/docs/docs/photos/faq/desktop.md b/docs/docs/photos/faq/desktop.md index adac13bcc0..e513444b41 100644 --- a/docs/docs/photos/faq/desktop.md +++ b/docs/docs/photos/faq/desktop.md @@ -36,18 +36,4 @@ be specific to your distro (e.g. `xdg-desktop-menu forceupdate`). > [!NOTE] > > If you're using an AppImage and not seeing the icon, you'll need to -> [enable AppImage desktop integration](/photos/troubleshooting/desktop-install/#appimage-desktop-integration). - -### Application reporting offline despite Internet connectivity - -Due to unreliability of usage of `navigator.onLine` in Linux, the app may report that you are offline, even though the internet connection is functional. - -You can resolve the issue by adding a dummy network interface using the following command: - -```shell -ip link add dummy0 type dummy -ip addr add 10.10.10.1/24 dev dummy0 -ip link set dummy0 up -``` - -Once the interface is up, Ente correctly detects that the system is online. \ No newline at end of file +> [enable AppImage desktop integration](/photos/troubleshooting/desktop-install/#appimage-desktop-integration). \ No newline at end of file diff --git a/docs/docs/photos/troubleshooting/desktop-install/index.md b/docs/docs/photos/troubleshooting/desktop-install/index.md index 19ff875cc9..85e6cb5e62 100644 --- a/docs/docs/photos/troubleshooting/desktop-install/index.md +++ b/docs/docs/photos/troubleshooting/desktop-install/index.md @@ -99,3 +99,17 @@ If you do want to run it from the command line, you can do so by passing the For more details, see this upstream issue on [electron](https://github.com/electron/electron/issues/17972). + +### Application reporting offline despite Internet connectivity + +Due to unreliability of usage of `navigator.onLine` in Linux, the app may report that you are offline, even though the internet connection is functional. + +You can resolve the issue by adding a dummy network interface using the following command: + +```shell +ip link add dummy0 type dummy +ip addr add 10.10.10.1/24 dev dummy0 +ip link set dummy0 up +``` + +Once the interface is up, Ente correctly detects that the system is online. \ No newline at end of file