File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ class IOWebSocketTransport extends Transport {
123
123
var schema = opts['secure' ] ? 'wss' : 'ws' ;
124
124
// append timestamp to URI
125
125
if (opts['timestampRequests' ] == true ) {
126
- query[opts['timestampRequests ' ]] =
126
+ query[opts['timestampParam ' ]] =
127
127
DateTime .now ().millisecondsSinceEpoch.toRadixString (36 );
128
128
}
129
129
Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ class PollingTransport extends Transport {
227
227
228
228
// cache busting is forced
229
229
if (opts['timestampRequests' ] != null ) {
230
- query[opts['timestampRequests ' ]] =
230
+ query[opts['timestampParam ' ]] =
231
231
DateTime .now ().millisecondsSinceEpoch.toRadixString (36 );
232
232
}
233
233
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ class WebSocketTransport extends Transport {
113
113
var schema = opts['secure' ] ? 'wss' : 'ws' ;
114
114
// append timestamp to URI
115
115
if (opts['timestampRequests' ] == true ) {
116
- query[opts['timestampRequests ' ]] =
116
+ query[opts['timestampParam ' ]] =
117
117
DateTime .now ().millisecondsSinceEpoch.toRadixString (36 );
118
118
}
119
119
You can’t perform that action at this time.
0 commit comments