Skip to content

Commit c991b41

Browse files
committed
New beta version.
1 parent a200945 commit c991b41

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

index.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ function Framework() {
456456

457457
this.id = null;
458458
this.version = 2000;
459-
this.version_header = '2.0.0-49';
459+
this.version_header = '2.0.0-50';
460460
this.version_node = process.version.toString().replace('v', '').replace(/\./g, '').parseFloat();
461461

462462
this.config = {
@@ -9659,10 +9659,7 @@ Subscribe.prototype.urlencoded = function() {
96599659
// THROWS (in OSX): Assertion failed: (Buffer::HasInstance(args[0]) == true), function Execute, file ../src/node_http_parser.cc, line 392.
96609660
//self.req.socket.setEncoding(ENCODING);
96619661

9662-
self.req.on('data', function(chunk) {
9663-
self.doParsepost(chunk);
9664-
});
9665-
9662+
self.req.on('data', (chunk) => self.doParsepost(chunk));
96669663
self.end();
96679664
return self;
96689665
};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
"name": "Martin Smola",
7373
"email": "smola.martin@gmail.com"
7474
}],
75-
"version": "2.0.0-49",
75+
"version": "2.0.0-50",
7676
"homepage": "http://www.totaljs.com",
7777
"bugs": {
7878
"url": "https://github.com/totaljs/framework/issues",

0 commit comments

Comments
 (0)