Update BeeApiClient default URL to 192.168.0.10:5000

This commit is contained in:
kayos 2026-03-22 00:41:31 -07:00
parent a20e510f44
commit 3b55dbd758

View file

@ -34,7 +34,7 @@ import okhttp3.RequestBody.Companion.toRequestBody
import java.util.concurrent.TimeUnit
class BeeApiClient(
private var apiUrl: String = "http://10.77.0.1:5000"
private var apiUrl: String = "http://192.168.0.10:5000"
) {
companion object {
private const val TAG = "VarroaBeeAPI"
@ -711,3 +711,4 @@ class BeeApiClient(
return postRaw("/api/1/wigle/config", json)
}
}