breadwallet / breadwallet-android

The Android version of the Bread bitcoin wallet.
MIT License
387 stars 424 forks source link

Internet check issue #168

Closed swapnilsinha17 closed 3 years ago

swapnilsinha17 commented 3 years ago

On HomeController

ifChanged(M::hasInternet) {

        notification_bar.apply {
            isGone = hasInternet
            if (hasInternet) bringToFront()
        }
    }

this check always return "true" value(have/have not internet).Why?

DrewCarlson commented 3 years ago

Thanks for the report. It always returns true because the source of the network state is not wired up anymore. We will restore this functionality in an upcoming release.

ahsanb786 commented 3 years ago

This issue has been fixed. Thank you once again for the report.

swapnilsinha17 commented 3 years ago

@ahsanb786 Glad to help:)