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

Fixed minor linting issue

This commit is contained in:
Amos Ng 2020-06-14 19:04:20 +08:00
parent ab21392d29
commit 41d06a2646
No known key found for this signature in database
GPG key ID: 89086414F634D123

View file

@ -192,7 +192,8 @@ class ImageServer(private val cache: DiskLruCache, private val statistics: Atomi
} else {
it
}
}.header("X-Cache", if (cached) "HIT" else "MISS")
}
.header("X-Cache", if (cached) "HIT" else "MISS")
}
private fun getRc4(key: ByteArray): Cipher {