Skip to content

Commit

Permalink
fix: Don't print error twice when background crashes
Browse files Browse the repository at this point in the history
  • Loading branch information
aklinker1 committed Jun 25, 2023
1 parent 3e37de9 commit 407627c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/virtual-background.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ try {
);
}
} catch (err) {
console.error('The background script crashed on startup!\n\n', err);
console.error('The background script crashed on startup!');
throw err;
}

0 comments on commit 407627c

Please sign in to comment.