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; } }