diff options
author | dec05eba <dec05eba@protonmail.com> | 2021-06-17 11:21:33 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2021-06-17 11:21:33 +0200 |
commit | ef55c93b294d25df8cafef7c32080024ab27e84a (patch) | |
tree | fb103a386a6fb6bb52e4b2b0b6cd643ce5834ff4 /src/plugins | |
parent | 4b99e44bfc320d01f6727c85be878bb72eb12257 (diff) |
i cant sneed, manganelo creator page removal until fix
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/Manganelo.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/Manganelo.cpp b/src/plugins/Manganelo.cpp index 5e53451..caa3f9a 100644 --- a/src/plugins/Manganelo.cpp +++ b/src/plugins/Manganelo.cpp @@ -89,9 +89,10 @@ namespace QuickMedia { chapters_body->items = std::move(chapters_items); result_tabs.push_back(Tab{std::move(chapters_body), std::make_unique<ManganeloChaptersPage>(page->program, title, url), page->create_search_bar("Search...", SEARCH_DELAY_FILTER)}); - for(Creator &creator : creators) { + // TODO: Fix. Doesn't work because manganelo changes creator url format + /*for(Creator &creator : creators) { result_tabs.push_back(Tab{page->create_body(), std::make_unique<ManganeloCreatorPage>(page->program, std::move(creator)), page->create_search_bar("Search...", SEARCH_DELAY_FILTER)}); - } + }*/ return PluginResult::OK; } |