1
0
Fork 1
mirror of https://gitlab.com/mangadex-pub/mangadex_at_home.git synced 2024-01-19 02:48:37 +00:00

Fix some nits

This commit is contained in:
carbotaniuman 2022-02-06 20:07:39 -06:00
parent 0cf608a66b
commit 7bd44e29d9
2 changed files with 2 additions and 3 deletions

View file

@ -1,4 +1,4 @@
FROM adoptopenjdk:17
FROM eclipse-temurin:17-jre
WORKDIR /mangahome
ADD /build/libs/mangadex_at_home.jar /mangahome/mangadex_at_home.jar

View file

@ -37,9 +37,8 @@ import org.slf4j.LoggerFactory
import java.time.OffsetDateTime
import java.util.Base64
class TokenVerifier(tokenKey: ByteArray, isDisabled: Boolean) : Filter {
class TokenVerifier(tokenKey: ByteArray, private val isDisabled: Boolean) : Filter {
private val box = TweetNaclFast.SecretBox(tokenKey)
private val isDisabled = isDisabled
override fun invoke(next: HttpHandler): HttpHandler {
return then@{