|
@@ -148,7 +148,7 @@ class MangaCoverFetcher : Fetcher<Manga> {
|
|
private fun getResourceType(cover: String?): Type? {
|
|
private fun getResourceType(cover: String?): Type? {
|
|
return when {
|
|
return when {
|
|
cover.isNullOrEmpty() -> null
|
|
cover.isNullOrEmpty() -> null
|
|
- cover.startsWith("http") || cover.startsWith("Custom-", true) -> Type.URL
|
|
|
|
|
|
+ cover.startsWith("http", true) || cover.startsWith("Custom-", true) -> Type.URL
|
|
cover.startsWith("/") || cover.startsWith("file://") -> Type.File
|
|
cover.startsWith("/") || cover.startsWith("file://") -> Type.File
|
|
else -> null
|
|
else -> null
|
|
}
|
|
}
|