feat: reduced time to wait before trying to connect to local address

This commit is contained in:
CappielloAntonio 2024-06-02 16:21:29 +02:00
parent 79f5b9b158
commit a67571ee4f

View file

@ -185,7 +185,7 @@ object Preferences {
fun isServerSwitchable(): Boolean {
return App.getInstance().preferences.getLong(
NEXT_SERVER_SWITCH, 0
) + 60000 < System.currentTimeMillis()
) + 15000 < System.currentTimeMillis()
}
@JvmStatic