From fb39059b60757c210cbcf06ad154a420dc315071 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Mon, 2 Mar 2020 13:22:40 +0100 Subject: fixed issue in import_pinboard_json --- newspipe/lib/data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newspipe/lib/data.py b/newspipe/lib/data.py index 7c6beff9..94f98ac4 100644 --- a/newspipe/lib/data.py +++ b/newspipe/lib/data.py @@ -214,7 +214,7 @@ def import_pinboard_json(user, json_content): bookmark_attr = { "href": bookmark["href"], "description": description, - "title": description, + "title": bookmark["title"], "shared": [bookmark["shared"] == "yes" and True or False][0], "to_read": [bookmark["toread"] == "yes" and True or False][0], "time": time, -- cgit