From 4822eb8ec0390967fc22bf7c92cccd84a5ebba7f Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 30 Aug 2018 01:35:45 +0200 Subject: Fixed loading screen still visible after server error exit --- app/src/main/java/me/texx/Texx/RoutingActivity.kt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'app/src/main/java/me/texx/Texx/RoutingActivity.kt') diff --git a/app/src/main/java/me/texx/Texx/RoutingActivity.kt b/app/src/main/java/me/texx/Texx/RoutingActivity.kt index 5ee27a9..168d072 100644 --- a/app/src/main/java/me/texx/Texx/RoutingActivity.kt +++ b/app/src/main/java/me/texx/Texx/RoutingActivity.kt @@ -9,8 +9,7 @@ import com.madapps.prefrences.EasyPrefrences import daio.io.dresscode.dressCodeName import daio.io.dresscode.matchDressCode import me.texx.Texx.util.ThemeUtil.getThemeName -import org.jetbrains.anko.alert -import org.jetbrains.anko.startActivity +import org.jetbrains.anko.* import java.io.IOException /** @@ -51,7 +50,7 @@ class RoutingActivity : AppCompatActivity() { response.httpStatusCode == 200 -> startActivity() response.httpStatusCode == 401 -> startActivity() !isConnected() -> startActivity("notConnected" to true) - serverError != null -> startActivity("serverDown" to true) + serverError != null -> startActivity(intentFor("serverDown" to true).newTask().clearTask().noAnimation().excludeFromRecents()) else -> startActivity() } } -- cgit v1.2.3