nativescript-websockets
Advanced tools
Comparing version
{ | ||
"name": "nativescript-websockets", | ||
"version": "1.5.2", | ||
"version": "1.5.3", | ||
"description": "A WebSocket NativeScript module for Android and iOS", | ||
@@ -40,3 +40,8 @@ "main": "websockets", | ||
"url": "https://github.com/myso-kr" | ||
} | ||
}, | ||
{ | ||
"name": "Linus Gasser", | ||
"email": "linus.gasser@epfl.ch", | ||
"url": "https://github.com/ineiti" | ||
} | ||
], | ||
@@ -43,0 +48,0 @@ "bugs": { |
@@ -449,3 +449,3 @@ /***************************************************************************************** | ||
if (eventCallbacks[i].c === callback) { | ||
eventCallbacks.slice(i, 1); | ||
eventCallbacks.splice(i, 1); | ||
} | ||
@@ -517,3 +517,3 @@ } | ||
if (message != null && !this._browser) { | ||
this._queue.push(message); | ||
this._queue.push(message.slice(0)); | ||
this._startQueueRunner(); | ||
@@ -536,3 +536,3 @@ } | ||
} | ||
this._queue.push(message); | ||
this._queue.push(message.slice(0)); | ||
this._startQueueRunner(); | ||
@@ -539,0 +539,0 @@ return false; |
@@ -8,3 +8,3 @@ /***************************************************************************************** | ||
* | ||
* Version 1.5.0 Nathan@master-technology.com | ||
* Version 1.5.2 Nathan@master-technology.com | ||
****************************************************************************************/ | ||
@@ -257,3 +257,3 @@ "use strict"; | ||
if (eventCallbacks[i].c === callback) { | ||
eventCallbacks.slice(i, 1); | ||
eventCallbacks.splice(i, 1); | ||
} | ||
@@ -335,3 +335,3 @@ } | ||
} | ||
this._queue.push(message); | ||
this._queue.push(message.slice(0)); | ||
this._startQueueRunner(); | ||
@@ -338,0 +338,0 @@ return false; |
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 1 instance in 1 package
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 1 instance in 1 package
180750
0.08%