Compare commits

...

2 Commits

Author SHA1 Message Date
f3e1fb7664
update gitignore 2025-05-30 17:15:05 +01:00
Jobobby04
cc934607c8 SpotlessApply 2025-05-24 21:07:29 -04:00
2 changed files with 5 additions and 2 deletions

3
.gitignore vendored
View File

@ -19,3 +19,6 @@ local.properties
google-services.json google-services.json
/app/src/main/assets/client_secrets.json /app/src/main/assets/client_secrets.json
*.apk *.apk
# Custom ignores
/keys

View File

@ -45,7 +45,7 @@ fun Manga.toSManga(): SManga = SManga.create().also {
it.description = ogDescription it.description = ogDescription
it.genre = ogGenre.orEmpty().joinToString() it.genre = ogGenre.orEmpty().joinToString()
it.status = ogStatus.toInt() it.status = ogStatus.toInt()
//SY <-- // SY <--
it.thumbnail_url = thumbnailUrl it.thumbnail_url = thumbnailUrl
it.initialized = initialized it.initialized = initialized
} }