Skip to content
This repository has been archived by the owner on Dec 27, 2022. It is now read-only.

Commit

Permalink
Don't log when pins fail to load
Browse files Browse the repository at this point in the history
  • Loading branch information
pfrazee committed Apr 1, 2019
1 parent 5e20fe5 commit 3ebaa2e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions app/background-process/ui/view-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -845,9 +845,7 @@ export async function loadPins (win) {
win = getTopWindow(win)
var json = await settingsDb.get('pinned_tabs')
try { JSON.parse(json).forEach(url => create(win, url, {isPinned: true})) }
catch (e) {
console.log('Failed to load pins', e)
}
catch (e) {}
}

export function reopenLastRemoved (win) {
Expand Down

0 comments on commit 3ebaa2e

Please sign in to comment.