aboutsummaryrefslogtreecommitdiff
path: root/src/web/views
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-06-01 23:42:55 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-06-01 23:42:55 +0200
commit66a8e89b59a3cd3882f007e30624ccaa8f45a32e (patch)
tree386ed6cb11f76a5dbe5fcc27f9a697dc9f2ed429 /src/web/views
parentBookmarklet now get the title of the document. (diff)
downloadnewspipe-66a8e89b59a3cd3882f007e30624ccaa8f45a32e.tar.gz
newspipe-66a8e89b59a3cd3882f007e30624ccaa8f45a32e.tar.bz2
newspipe-66a8e89b59a3cd3882f007e30624ccaa8f45a32e.zip
URLs added via the bookmarklet are shared by default.
Diffstat (limited to 'src/web/views')
-rw-r--r--src/web/views/bookmark.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/views/bookmark.py b/src/web/views/bookmark.py
index 31026405..c80c9fdd 100644
--- a/src/web/views/bookmark.py
+++ b/src/web/views/bookmark.py
@@ -218,7 +218,7 @@ def bookmarklet():
bookmark_attr = {'href': href,
'description': '',
'title': title,
- 'shared': False,
+ 'shared': True,
'to_read': True}
new_bookmark = bookmark_contr.create(**bookmark_attr)
bgstack15