Fix indentation
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / pages / TrustPage.kt
index b6fb038..758ae07 100644 (file)
@@ -12,14 +12,14 @@ import net.pterodactylus.util.template.TemplateContext
  * Page that lets the user trust another Sone. This will assign a configurable
  * amount of trust to an identity.
  */
-class TrustPage(template: Template, webInterface: WebInterface):
+class TrustPage(template: Template, webInterface: WebInterface) :
                LoggedInPage("trust.html", template, "Page.Trust.Title", webInterface) {
 
        override fun handleRequest(freenetRequest: FreenetRequest, currentSone: Sone, templateContext: TemplateContext) {
                if (freenetRequest.isPOST) {
-                               webInterface.core.getSone(freenetRequest.parameters["sone"]!!)?.let { sone ->
-                                       webInterface.core.trustSone(currentSone, sone)
-                               }
+                       webInterface.core.getSone(freenetRequest.parameters["sone"]!!)?.let { sone ->
+                               webInterface.core.trustSone(currentSone, sone)
+                       }
                        throw RedirectException(freenetRequest.parameters["returnPage", 256])
                }
        }