[RU]Remanga nullable access_token (#13672)

This commit is contained in:
Yjin 2022-10-02 03:26:03 +05:00 committed by GitHub
parent 9491a8ce44
commit 72169cb64f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ ext {
extName = 'Remanga'
pkgNameSuffix = 'ru.remanga'
extClass = '.Remanga'
extVersionCode = 54
extVersionCode = 55
}
dependencies {

View File

@ -114,5 +114,5 @@ data class ChunksPageDto(
@Serializable
data class UserDto(
val id: Long,
val access_token: String
val access_token: String? = null
)