mirror of
https://gitlab.com/mangadex-pub/mangadex_at_home.git
synced 2024-11-17 00:22:32 +01:00
Merge branch 'fix-nits' into 'master'
Really fix CI See merge request mangadex-pub/mangadex_at_home!97
This commit is contained in:
commit
c7830161c1
@ -1,4 +1,4 @@
|
|||||||
FROM adoptopenjdk:17
|
FROM eclipse-temurin:17-jre
|
||||||
|
|
||||||
WORKDIR /mangahome
|
WORKDIR /mangahome
|
||||||
ADD /build/libs/mangadex_at_home.jar /mangahome/mangadex_at_home.jar
|
ADD /build/libs/mangadex_at_home.jar /mangahome/mangadex_at_home.jar
|
||||||
|
@ -37,9 +37,8 @@ import org.slf4j.LoggerFactory
|
|||||||
import java.time.OffsetDateTime
|
import java.time.OffsetDateTime
|
||||||
import java.util.Base64
|
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 box = TweetNaclFast.SecretBox(tokenKey)
|
||||||
private val isDisabled = isDisabled
|
|
||||||
|
|
||||||
override fun invoke(next: HttpHandler): HttpHandler {
|
override fun invoke(next: HttpHandler): HttpHandler {
|
||||||
return then@{
|
return then@{
|
||||||
|
Loading…
Reference in New Issue
Block a user