From 474fd47fc035f912fb11b830b582022597e5a892 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 13 Aug 2021 02:39:34 +0200 Subject: [PATCH] telepathyClient: Fix a typo Whoops, that notifiction was never shown. Spotted by coverity in CID 351223. Part-of: --- js/ui/components/telepathyClient.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/components/telepathyClient.js b/js/ui/components/telepathyClient.js index 0c9514e2b..103688259 100644 --- a/js/ui/components/telepathyClient.js +++ b/js/ui/components/telepathyClient.js @@ -415,7 +415,7 @@ class ChatSource extends MessageTray.Source { _updateAvatarIcon() { this.iconUpdated(); - if (this._notifiction) { + if (this._notification) { this._notification.update(this._notification.title, this._notification.bannerBodyText, { gicon: this.getIcon() });