diff options
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/Manga.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/plugins/Manga.cpp b/src/plugins/Manga.cpp index 2c7bae0..3fa5d47 100644 --- a/src/plugins/Manga.cpp +++ b/src/plugins/Manga.cpp @@ -20,4 +20,10 @@ namespace QuickMedia { if(extract_id_from_url(content_url, manga_id)) load_manga_content_storage(get_service_name(), content_title, manga_id); } + + std::shared_ptr<BodyItem> MangaChaptersPage::get_bookmark_body_item() { + auto body_item = std::make_shared<BodyItem>(content_title); + body_item->url = content_url; + return body_item; + } }
\ No newline at end of file |