File tree Expand file tree Collapse file tree 4 files changed +8
-6
lines changed
Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 1- # Barchart Market Data SDK <small >JavaScript 5.25.0 </small >
1+ # Barchart Market Data SDK <small >JavaScript 5.25.1 </small >
22
33> Inject real-time market data into your JavaScript applications
44
Original file line number Diff line number Diff line change @@ -5177,8 +5177,10 @@ module.exports = (() => {
51775177 }
51785178
51795179 if (message.subrecord === '1') {
5180- q.lastUpdate = message.time;
5181- q.lastUpdateUtc = _getUtcTimestamp(symbol, message.time);
5180+ if (message.time) {
5181+ q.lastUpdate = message.time;
5182+ q.lastUpdateUtc = _getUtcTimestamp(symbol, message.time);
5183+ }
51825184 }
51835185
51845186 _derivePriceChange(q);
@@ -6047,7 +6049,7 @@ module.exports = (() => {
60476049 'use strict';
60486050
60496051 return {
6050- version: '5.25.0 '
6052+ version: '5.25.1 '
60516053 };
60526054})();
60536055
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ module.exports = (() => {
22 'use strict' ;
33
44 return {
5- version : '5.25.0 '
5+ version : '5.25.1 '
66 } ;
77} ) ( ) ;
Original file line number Diff line number Diff line change 11{
22 "name" : " @barchart/marketdata-api-js" ,
3- "version" : " 5.25.0 " ,
3+ "version" : " 5.25.1 " ,
44 "description" : " SDK for streaming market data from Barchart.com" ,
55 "author" : {
66 "name" : " Eero Pikat" ,
You can’t perform that action at this time.
0 commit comments