aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/src/main/java/me/texx/Texx/RoutingActivity.kt
diff options
context:
space:
mode:
authorMarvin Borner2018-08-31 00:17:00 +0200
committerMarvin Borner2018-08-31 00:17:00 +0200
commite9dcc2b88ec1cb4a09e5f82e6aa91ad46ca13037 (patch)
treebc51b4e86e63f3f3a4f9b106b863175ab448d9a9 /app/src/main/java/me/texx/Texx/RoutingActivity.kt
parent3df3c2faedf287fadf526f52c8aba8d1f567416a (diff)
Started implementing camera for posting media
Diffstat (limited to 'app/src/main/java/me/texx/Texx/RoutingActivity.kt')
-rw-r--r--app/src/main/java/me/texx/Texx/RoutingActivity.kt12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/src/main/java/me/texx/Texx/RoutingActivity.kt b/app/src/main/java/me/texx/Texx/RoutingActivity.kt
index bed9973..3ef5486 100644
--- a/app/src/main/java/me/texx/Texx/RoutingActivity.kt
+++ b/app/src/main/java/me/texx/Texx/RoutingActivity.kt
@@ -17,7 +17,7 @@ import java.io.IOException
* should be started next
*/
class RoutingActivity : AppCompatActivity() {
- private val serverAddress = "192.168.0.104"
+ private val serverAddress = "192.168.137.1"
override fun onCreate(savedInstanceState: Bundle?) {
matchDressCode()
@@ -49,12 +49,12 @@ class RoutingActivity : AppCompatActivity() {
.header("Authorization" to "Bearer $accessToken")
.responseJson { _, response, result ->
val (_, serverError) = result
- when {
- response.httpStatusCode == 200 -> startActivity<MainActivity>()
- response.httpStatusCode == 401 -> startActivity<LoginActivity>()
- !isConnected() -> startActivity<MainActivity>("notConnected" to true)
+ when { // TODO: Cleaner task solution
+ response.httpStatusCode == 200 -> startActivity(intentFor<MainActivity>().newTask().clearTask().noAnimation().excludeFromRecents())
+ response.httpStatusCode == 401 -> startActivity(intentFor<LoginActivity>().newTask().clearTask().noAnimation().excludeFromRecents())
+ !isConnected() -> startActivity(intentFor<MainActivity>("notConnected" to true).newTask().clearTask().noAnimation().excludeFromRecents())
serverError != null -> startActivity(intentFor<MainActivity>("serverDown" to true).newTask().clearTask().noAnimation().excludeFromRecents())
- else -> startActivity<LoginActivity>()
+ else -> startActivity(intentFor<LoginActivity>().newTask().clearTask().noAnimation().excludeFromRecents())
}
}
} else {