X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fkotlin%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fajax%2FFollowSoneAjaxPage.kt;h=c6aa25ee55d7e8c778a13d646827d6bb623da62f;hb=4bf90851f9e7a8f31d4f58f4f74dc46d8e4ddec8;hp=b37b48a39893b4b42f7ff3733ebd5c71a9589799;hpb=e845284d2f10cf6b0b405966d48938ef1fea0a38;p=Sone.git diff --git a/src/main/kotlin/net/pterodactylus/sone/web/ajax/FollowSoneAjaxPage.kt b/src/main/kotlin/net/pterodactylus/sone/web/ajax/FollowSoneAjaxPage.kt index b37b48a..c6aa25e 100644 --- a/src/main/kotlin/net/pterodactylus/sone/web/ajax/FollowSoneAjaxPage.kt +++ b/src/main/kotlin/net/pterodactylus/sone/web/ajax/FollowSoneAjaxPage.kt @@ -14,9 +14,9 @@ class FollowSoneAjaxPage(webInterface: WebInterface) : LoggedInJsonPage("followS override fun createJsonObject(currentSone: Sone, request: FreenetRequest) = request.parameters["sone"] - .let(webInterface.core::getSone) - ?.also { webInterface.core.followSone(currentSone, it.id) } - ?.also(webInterface.core::markSoneKnown) + .let(core::getSone) + ?.also { core.followSone(currentSone, it.id) } + ?.also(core::markSoneKnown) ?.let { createSuccessJsonObject() } ?: createErrorJsonObject("invalid-sone-id")