aboutsummaryrefslogtreecommitdiff
path: root/src/web/views/bookmark.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/views/bookmark.py')
-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