From f73a01295cffef6daf76d41242887b615c6c61cd Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Thu, 23 May 2013 17:41:19 -0400 Subject: [PATCH] messageTray: Don't destroy a notification from within its destroy handler Nothing but bad can come from this. https://bugzilla.gnome.org/show_bug.cgi?id=700923 --- js/ui/messageTray.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js index e2db331d9..68f4e5c5f 100644 --- a/js/ui/messageTray.js +++ b/js/ui/messageTray.js @@ -1996,7 +1996,6 @@ const MessageTray = new Lang.Class({ } let index = this._notificationQueue.indexOf(notification); - notification.destroy(); if (index != -1) this._notificationQueue.splice(index, 1); },