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

This commit is contained in:
CappielloAntonio 2024-06-02 16:15:20 +02:00
parent f6b176a357
commit 79f5b9b158

View file

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