From 266d9ad271b0f694c81c7b63480329f441aeeff5 Mon Sep 17 00:00:00 2001 From: Adamantcheese Date: Sun, 29 Sep 2019 23:32:34 -0700 Subject: [PATCH] Closes #352, I have no fucking clue why but ok --- .../adamantcheese/chan/core/presenter/ReplyPresenter.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Kuroba/app/src/main/java/com/github/adamantcheese/chan/core/presenter/ReplyPresenter.java b/Kuroba/app/src/main/java/com/github/adamantcheese/chan/core/presenter/ReplyPresenter.java index 81c3b932ce..04bda9b36f 100644 --- a/Kuroba/app/src/main/java/com/github/adamantcheese/chan/core/presenter/ReplyPresenter.java +++ b/Kuroba/app/src/main/java/com/github/adamantcheese/chan/core/presenter/ReplyPresenter.java @@ -560,7 +560,9 @@ public void switchPage(Page page, boolean useV2NoJsCaptcha, boolean autoReply) { // cleanup resources tied to the new captcha layout/presenter callback.destroyCurrentAuthentication(); callback.initializeAuthentication(loadable.site, authentication, this, useV2NoJsCaptcha, autoReply); - callback.setPage(Page.AUTHENTICATION); + if(!autoReply) { + callback.setPage(Page.AUTHENTICATION); + } break; } }