diff options
| author | Fuwn <[email protected]> | 2026-03-22 13:51:50 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-03-22 14:02:13 +0000 |
| commit | 8e5eac4566c5677f57d017e232a69a0e14308540 (patch) | |
| tree | 01ea4468e0c79681e69976e48295828275184ad3 /Sora/Data/Booru | |
| parent | fix: send booru headers for image requests (diff) | |
| download | sora-testing-8e5eac4566c5677f57d017e232a69a0e14308540.tar.xz sora-testing-8e5eac4566c5677f57d017e232a69a0e14308540.zip | |
fix: repair moebooru tag suggestions
Diffstat (limited to 'Sora/Data/Booru')
| -rw-r--r-- | Sora/Data/Booru/BooruManager.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Sora/Data/Booru/BooruManager.swift b/Sora/Data/Booru/BooruManager.swift index 6333453..7d11158 100644 --- a/Sora/Data/Booru/BooruManager.swift +++ b/Sora/Data/Booru/BooruManager.swift @@ -482,7 +482,7 @@ class BooruManager: ObservableObject { // swiftlint:disable:this type_body_leng components.host = domain components.path = "/tag.xml" components.queryItems = [ - URLQueryItem(name: "name_pattern", value: name), + URLQueryItem(name: "name", value: name), URLQueryItem(name: "order", value: "count"), ] |