wwWallet / wallet-frontend

BSD 2-Clause "Simplified" License
24 stars 7 forks source link

Update Online Status Check to Use Navigator Connection Downlink #302

Closed gkatrakazas closed 3 months ago

gkatrakazas commented 3 months ago

This PR updates the online status check mechanism in the OnlineStatusProvider component. Previously, the online status was determined using navigator.onLine and navigator.connection?.type !== "unknown". This has been changed to use navigator.onLine and navigator.connection?.downlink !== 0 to provide a more accurate determination of the online status.