From 993e7d77ad32cd1093d3089b14e9a4f7a791c2fc Mon Sep 17 00:00:00 2001 From: Benjamin Tan Date: Fri, 9 Sep 2016 07:16:43 +0800 Subject: [PATCH] Fix notification click not working. (#912) This was changed incorrectly in 2a1e987. --- src/renderer/controllers/torrent-controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/controllers/torrent-controller.js b/src/renderer/controllers/torrent-controller.js index a49166fb..7e4ee824 100644 --- a/src/renderer/controllers/torrent-controller.js +++ b/src/renderer/controllers/torrent-controller.js @@ -177,7 +177,7 @@ function showDoneNotification (torrent) { silent: true }) - notif.onClick = function () { + notif.onclick = function () { ipcRenderer.send('show') }