Procházet zdrojové kódy

fixed crash issue

master
mort před 8 roky
rodič
revize
dcaece2e44
2 změnil soubory, kde provedl 3 přidání a 2 odebrání
  1. 2
    1
      index.js
  2. 1
    1
      package.json

+ 2
- 1
index.js Zobrazit soubor

@@ -69,7 +69,8 @@ var util = require("util");

//Generic internal send function
Socket.prototype._send = function(data) {
this._websock.send(JSON.stringify(data));
if (this._ready)
this._websock.send(JSON.stringify(data));
}

//Trigger event on the client

+ 1
- 1
package.json Zobrazit soubor

@@ -1,6 +1,6 @@
{
"name": "socksugar",
"version": "0.3.1",
"version": "0.3.2",
"description": "Websockets with sugar on top.",
"main": "index.js",
"scripts": {

Načítá se…
Zrušit
Uložit