Pixiv: fix users filter (#17281)

Pixiv: Fix users filter
This commit is contained in:
Solitai7e 2023-07-27 19:32:45 +00:00 committed by GitHub
parent e8dce7f5e7
commit ef403d0381
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 = 'Pixiv' extName = 'Pixiv'
pkgNameSuffix = 'all.pixiv' pkgNameSuffix = 'all.pixiv'
extClass = '.PixivFactory' extClass = '.PixivFactory'
extVersionCode = 4 extVersionCode = 5
isNsfw = true isNsfw = true
} }

View File

@ -111,7 +111,7 @@ class Pixiv(override val lang: String) : HttpSource() {
} }
} else if (filters.users.state.isNotBlank()) { } else if (filters.users.state.isNotBlank()) {
searchSequence = makeUserIllustSearchSequence( searchSequence = makeUserIllustSearchSequence(
nick = query, nick = filters.users.state,
type = filters.type.toSearchParameter(), type = filters.type.toSearchParameter(),
) )