diff options
author | dec05eba <dec05eba@protonmail.com> | 2022-11-26 03:13:44 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2022-11-26 03:13:44 +0100 |
commit | 2409bd1b0dc0118036c3024fdf19a5dc16a26586 (patch) | |
tree | 649d60e50fbe22d9d9564a71cb3b9f539fdfbca8 /src | |
parent | e75fe2db48fea5663da43d6faf1c1e1d48de2c4f (diff) |
Mangadex: first artist/author page sometimes being empty (mangadex api change?)
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/Mangadex.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/Mangadex.cpp b/src/plugins/Mangadex.cpp index a137318..bc19536 100644 --- a/src/plugins/Mangadex.cpp +++ b/src/plugins/Mangadex.cpp @@ -69,8 +69,7 @@ namespace QuickMedia { url += "&title=" + query_encoded; break; case SearchType::AUTHOR: - url += "&authors[]=" + query_encoded; - url += "&artists[]=" + query_encoded; + url += "&authorOrArtist=" + query_encoded; break; } |