Skip to content

Commit

Permalink
Bug 1839073, r=emilio, a=dsmith
Browse files Browse the repository at this point in the history
  • Loading branch information
Trikolon committed Jul 6, 2023
1 parent d24efcf commit 0bdfc4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toolkit/modules/PopupNotifications.sys.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1259,7 +1259,7 @@ PopupNotifications.prototype = {

// Remember the time the notification was shown for the security delay.
notificationsToShow.forEach(
n => (n.timeShown ??= this.window.performance.now())
n => (n.timeShown = this.window.performance.now())
);

if (this.isPanelOpen && this._currentAnchorElement == anchorElement) {
Expand Down

0 comments on commit 0bdfc4a

Please sign in to comment.