Really fix CI

This commit is contained in:
carbotaniuman 2022-02-07 03:59:51 +00:00
parent 0cf608a66b
commit f651409e87
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@{