Skip to content

Commit 8acc484

Browse files
committed
small changes + new BETA
1 parent 0e7c104 commit 8acc484

6 files changed

Lines changed: 19 additions & 18 deletions

File tree

index.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ function Framework() {
169169

170170
this.id = null;
171171
this.version = 1730;
172-
this.version_header = '1.7.3 (build: 29)';
172+
this.version_header = '1.7.3 (build: 30)';
173173

174174
var version = process.version.toString().replace('v', '').replace(/\./g, '');
175175

@@ -3905,7 +3905,6 @@ Framework.prototype.response404 = function(req, res, problem) {
39053905
Framework.prototype.response408 = function(req, res, problem) {
39063906

39073907
var self = this;
3908-
39093908
if (problem)
39103909
self.problem(problem, 'response408()', req.uri, req.ip);
39113910

@@ -4910,6 +4909,7 @@ Framework.prototype._upgrade_continue = function(route, req, socket, path) {
49104909

49114910
if (self.connections[id] === undefined) {
49124911
var connection = new WebSocket(self, path, route.controller, id);
4912+
connection.route = route;
49134913
self.connections[id] = connection;
49144914
route.onInitialize.apply(connection, framework_internal.routeParam(route.param.length > 0 ? framework_internal.routeSplit(req.uri.pathname, true) : req.path, route));
49154915
}
@@ -11021,6 +11021,7 @@ function WebSocket(framework, path, name, id) {
1102111021
this.name = name;
1102211022
this.isController = true;
1102311023
this.url = utils.path(path);
11024+
this.route = null;
1102411025

1102511026
// on('open', function(client) {});
1102611027
// on('close', function(client) {});

minify/merged/total.js

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

minify/total.js/builders.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

minify/total.js/index.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

minify/total.js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,5 @@
6767
"scripts": {
6868
"test": "echo \"Error: no test specified\" && exit 1"
6969
},
70-
"version": "1.7.3-28"
70+
"version": "1.7.3-30"
7171
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,5 @@
6767
"scripts": {
6868
"test": "echo \"Error: no test specified\" && exit 1"
6969
},
70-
"version": "1.7.3-29"
70+
"version": "1.7.3-30"
7171
}

0 commit comments

Comments
 (0)