♻️ Move throwing redirect exception into method
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / pages / CreateReplyPage.kt
index c368ed8..7714b77 100644 (file)
@@ -15,7 +15,7 @@ import javax.inject.*
 @TemplatePath("/templates/createReply.html")
 @ToadletPath("createReply.html")
 class CreateReplyPage @Inject constructor(webInterface: WebInterface, loaders: Loaders, templateRenderer: TemplateRenderer) :
-               LoggedInPage("createReply.html", "Page.CreateReply.Title", webInterface, loaders, templateRenderer) {
+               LoggedInPage("Page.CreateReply.Title", webInterface, loaders, templateRenderer) {
 
        override fun handleRequest(soneRequest: SoneRequest, currentSone: Sone, templateContext: TemplateContext) {
                val postId = soneRequest.httpRequest.getPartAsStringFailsafe("post", 36).apply { templateContext["postId"] = this }
@@ -26,10 +26,10 @@ class CreateReplyPage @Inject constructor(webInterface: WebInterface, loaders: L
                                templateContext["errorTextEmpty"] = true
                                return
                        }
-                       val post = soneRequest.core.getPost(postId) ?: throw RedirectException("noPermission.html")
+                       val post = soneRequest.core.getPost(postId) ?: redirectTo("noPermission.html")
                        val sender = soneRequest.core.getLocalSone(soneRequest.httpRequest.getPartAsStringFailsafe("sender", 43)) ?: currentSone
                        soneRequest.core.createReply(sender, post, TextFilter.filter(soneRequest.httpRequest.getHeader("Host"), text))
-                       throw RedirectException(returnPage)
+                       redirectTo(returnPage)
                }
        }