Skip to content

Commit 15043a6

Browse files
authored
Merge pull request #16 from kakolisgay/patch-1
Fix logical OR causing syntax error on chromium
2 parents b1468db + e4e5484 commit 15043a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/popup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ function copyToClipboard(text, notification) {
211211

212212
chrome.notifications.create('get-rss-feed-url-copy', {
213213
type: "basic",
214-
title: notification.title ?? "Get RSS Feeds URLs",
214+
title: notification.title || "Get RSS Feeds URLs",
215215
message: notification.message,
216216
iconUrl: "img/notif_"+notification.type+".png"
217217
});

0 commit comments

Comments
 (0)