Fix isNsfw flag (#810)

This commit is contained in:
stevenyomi 2024-01-30 22:56:11 +08:00 committed by Draff
parent 4f1e8b8c4f
commit a548a4fb4a
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ android {
manifestPlaceholders = [
appName : "Tachiyomi: $extName",
extClass: extClass,
nsfw: ext.find("isNsfw") ? 1 : 0,
nsfw: project.ext.find("isNsfw") ? 1 : 0,
]
}