Skip to content

Commit

Permalink
Errors when notifications unavailable
Browse files Browse the repository at this point in the history
  • Loading branch information
Roy-Orbison committed Jun 7, 2022
1 parent e25b56d commit cab8032
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webex/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function assertNoResponse(response) {
}

function notifyError(error) {
browser.notifications.create({
browser.notifications?.create({
type: "basic",
title: "Textern",
message: "Error: " + error + "."
Expand Down
2 changes: 1 addition & 1 deletion webex/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function assertNoResponse(response) {
}

function notifyError(error) {
browser.notifications.create({
browser.notifications?.create({
type: "basic",
title: "Textern",
message: "Error: " + error + "."
Expand Down

0 comments on commit cab8032

Please sign in to comment.