Skip to content

Commit

Permalink
Always fetch add bookmarks in sensitive mode
Browse files Browse the repository at this point in the history
  • Loading branch information
bcomnes committed Jun 24, 2022
1 parent 330665c commit c2d7fcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/bookmarks/add/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const page = Component(() => {
const queryUrl = query.get('url')

if (!queryUrl) return setFallbackBookmark()
const response = await fetch(`${state.apiUrl}/bookmarks?url=${queryUrl}`, {
const response = await fetch(`${state.apiUrl}/bookmarks?url=${queryUrl}&sensitive=true`, {
headers: {
'content-type': 'application/json'
},
Expand Down

0 comments on commit c2d7fcc

Please sign in to comment.