From f8f8692a1596e8e073f3e5c90656101ecc38bf74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guilherme=20Gon=C3=83=C2=A7alves?= Date: Fri, 3 Jan 2014 09:32:37 -0500 Subject: [PATCH] Bug 956085 - Fix strict mode violation in PushService.jsm. r=nsm --- dom/push/src/PushService.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dom/push/src/PushService.jsm b/dom/push/src/PushService.jsm index ae22aabf6fb..a00516bc725 100644 --- a/dom/push/src/PushService.jsm +++ b/dom/push/src/PushService.jsm @@ -948,7 +948,7 @@ this.PushService = { return; } - [action, data] = this._requestQueue.shift(); + let [action, data] = this._requestQueue.shift(); data.messageType = action; if (!this._ws) { // If our websocket is not ready and our state is STATE_READY we may as