AllManga: Allow nullable image url (#10845)

* nullable imageUrl

* bump
This commit is contained in:
bapeey 2025-10-03 06:16:19 -05:00 committed by Draff
parent 233df400f0
commit dd6f475a01
Signed by: Draff
GPG Key ID: E8A89F3211677653
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
ext {
extName = 'AllManga'
extClass = '.AllManga'
extVersionCode = 9
extVersionCode = 10
}
apply from: "$rootDir/common.gradle"

View File

@ -146,5 +146,5 @@ class Servers(
@Serializable
class PageUrl(
val url: String,
val url: String?,
)