diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-06-01 23:42:55 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-06-01 23:42:55 +0200 |
commit | 66a8e89b59a3cd3882f007e30624ccaa8f45a32e (patch) | |
tree | 386ed6cb11f76a5dbe5fcc27f9a697dc9f2ed429 /src | |
parent | Bookmarklet now get the title of the document. (diff) | |
download | newspipe-66a8e89b59a3cd3882f007e30624ccaa8f45a32e.tar.gz newspipe-66a8e89b59a3cd3882f007e30624ccaa8f45a32e.tar.bz2 newspipe-66a8e89b59a3cd3882f007e30624ccaa8f45a32e.zip |
URLs added via the bookmarklet are shared by default.
Diffstat (limited to 'src')
-rw-r--r-- | src/web/views/bookmark.py | 2 |
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) |