reverted unrecognised change

This commit is contained in:
Alexandre Van de Sande 2016-02-22 15:32:57 -03:00
parent cd1974b883
commit bcd4625520
1 changed files with 5 additions and 5 deletions

View File

@ -82,11 +82,11 @@ IpcProvider.prototype._parseResponse = function(data) {
// DE-CHUNKER
var dechunkedData = data
.replace(/\}[\n\r]?\{/g,'}|--|{') // }{
.replace(/\}\][\n\r]?\[\{/g,'}]|--|[{') // }][{
.replace(/\}[\n\r]?\[\{/g,'}|--|[{') // }[{
.replace(/\}\][\n\r]?\{/g,'}]|--|{') // }]{
.split('|--|');
.replace(/\}\{/g,'}|--|{') // }{
.replace(/\}\]\[\{/g,'}]|--|[{') // }][{
.replace(/\}\[\{/g,'}|--|[{') // }[{
.replace(/\}\]\{/g,'}]|--|{') // }]{
.split('|--|');
dechunkedData.forEach(function(data){