Project

General

Profile

11080.txt

Sergey Ivanovskiy, 03/24/2016 01:19 PM

Download (771 Bytes)

 
1
=== modified file 'src/com/goldencode/p2j/ui/client/driver/web/res/p2j.socket.js'
2
--- src/com/goldencode/p2j/ui/client/driver/web/res/p2j.socket.js	2016-03-24 15:24:15 +0000
3
+++ src/com/goldencode/p2j/ui/client/driver/web/res/p2j.socket.js	2016-03-24 17:12:42 +0000
4
@@ -404,7 +404,7 @@
5
          }
6
          var limit = position + payloadLength;
7
          // send partial message
8
-         sendPartialMessage(task.msg, position, limit, payloadLength, task.msgId, isLast)
9
+         sendPartialMessage(task.msg, position, limit, payloadLength, task.msgId, isLast);
10
          
11
          position  = limit;
12
          remaining = capacity - position;
13
@@ -717,7 +717,7 @@
14
          msg[j] = data[i];
15
       }
16
       
17
-      send(msg);
18
+      ws.send(msg);
19
    };
20
    
21
    /**
22