aboutsummaryrefslogtreecommitdiff
path: root/src/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/Mangadex.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/plugins/Mangadex.cpp b/src/plugins/Mangadex.cpp
index 3632ed5..848471f 100644
--- a/src/plugins/Mangadex.cpp
+++ b/src/plugins/Mangadex.cpp
@@ -180,23 +180,6 @@ namespace QuickMedia {
description += "Status: " + status_json.asString();
}
- /* Commented out because its broken on mangadex. TODO: Uncomment when mangadex fixes this
- const Json::Value &updated_at_json = attributes_json["updatedAt"];
- if(updated_at_json.isString()) {
- if(!description.empty())
- description += '\n';
- const time_t unix_time = iso_utc_to_unix_time(updated_at_json.asCString());
- description += "Updated: " + unix_time_to_local_time_str(unix_time);
- }
- */
-
- const Json::Value &last_chapter_json = attributes_json["lastChapter"];
- if(last_chapter_json.isString()) {
- if(!description.empty())
- description += '\n';
- description += "Last chapter: " + last_chapter_json.asString();
- }
-
const Json::Value &description_json = attributes_json["description"];
if(description_json.isObject()) {
const Json::Value &en_json = description_json["en"];