From 601ddfc62958e78d000198d6a959247f53eb0711 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Soutad=C3=A9?= Date: Tue, 27 Jan 2015 21:23:03 +0100 Subject: [PATCH] Little mistake in firefox addon notify() --- firefox_addon/lib/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firefox_addon/lib/main.js b/firefox_addon/lib/main.js index 35e4307..c7a77f3 100644 --- a/firefox_addon/lib/main.js +++ b/firefox_addon/lib/main.js @@ -58,8 +58,8 @@ function notify(text, data) { notifications.notify({ title: "gPass", - text: "Error : It seems that it's not a gPass server", - data: this.responseText, + text: text, + data: data, }); }