#1553 Use getSocketAddress

This commit is contained in:
Shaun Burch 2024-06-29 14:12:24 -04:00
parent f40185de2a
commit fe22851843

View File

@ -25,7 +25,6 @@ import android.widget.Toast
import org.kiwix.kiwixmobile.core.CoreApp.Companion.coreComponent
import org.kiwix.kiwixmobile.core.R
import org.kiwix.kiwixmobile.core.extensions.registerReceiver
import org.kiwix.kiwixmobile.core.utils.ServerUtils.getIp
import org.kiwix.kiwixmobile.core.utils.ServerUtils.getSocketAddress
import org.kiwix.kiwixmobile.core.webserver.WebServerHelper
import org.kiwix.kiwixmobile.core.webserver.ZimHostCallbacks
@ -129,7 +128,7 @@ class HotspotService :
private fun startForegroundNotificationHelper() {
startForeground(
HotspotNotificationManager.HOTSPOT_NOTIFICATION_ID,
hotspotNotificationManager?.buildForegroundNotification(getIp())
hotspotNotificationManager?.buildForegroundNotification(getSocketAddress())
)
}