Little mistake in firefox addon notify()

This commit is contained in:
Grégory Soutadé 2015-01-27 21:23:03 +01:00
parent d395807c98
commit 601ddfc629
1 changed files with 2 additions and 2 deletions

View File

@ -58,8 +58,8 @@ function notify(text, data)
{ {
notifications.notify({ notifications.notify({
title: "gPass", title: "gPass",
text: "Error : It seems that it's not a gPass server", text: text,
data: this.responseText, data: data,
}); });
} }