From 64fd61de411d8657a666db9e29da69fa5a3ab7c1 Mon Sep 17 00:00:00 2001 From: Apostolof Date: Fri, 25 Nov 2016 02:46:53 +0200 Subject: [PATCH] Custom bottom bar for page navigation. Expandable cards show/hide date and post number. FAB for post actions etc. Prepared parse for focus on message. --- app/src/main/java/gr/thmmy/mthmmy/activities/BaseActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/BaseActivity.java b/app/src/main/java/gr/thmmy/mthmmy/activities/BaseActivity.java index 16054e5c..36924d18 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/activities/BaseActivity.java +++ b/app/src/main/java/gr/thmmy/mthmmy/activities/BaseActivity.java @@ -215,7 +215,7 @@ public class BaseActivity extends AppCompatActivity { Response response = client.newCall(request).execute(); Document document = Jsoup.parse(response.body().string()); - Elements login = document.select("[value=Login]"); //Find login button + Elements login = document.select("[pageValue=Login]"); //Find login button ((PersistentCookieJar) getCookieJar()).clear(); if (!login.isEmpty()) { //If found, logout was successful Log.i("Logout", "Logout successful");