@barchart/marketdata-api-js
Advanced tools
Comparing version 3.1.40 to 3.1.41
{ | ||
"name": "barchart-marketdata-api", | ||
"version": "3.1.40", | ||
"version": "3.1.41", | ||
"homepage": "https://github.com/barchart/marketdata-api-js", | ||
@@ -5,0 +5,0 @@ "description": "Barchart Market Data API for JavaScript", |
@@ -389,4 +389,4 @@ const utilities = require('@barchart/marketdata-utilities-js'); | ||
if (!symbol) { | ||
console.log('Consumer: Unable to process "on" command, the "symbol" argument is empty.'); | ||
if (!symbol || !(symbol.indexOf(' ') < 0)) { | ||
console.log('Consumer: Unable to process "on" command, the "symbol" argument is invalid.'); | ||
console.trace(); | ||
@@ -503,3 +503,3 @@ | ||
if (!symbol) { | ||
if (!symbol || !(symbol.indexOf(' ') < 0)) { | ||
console.log('Consumer: Unable to process "off" command, the "symbol" argument is empty.'); | ||
@@ -584,3 +584,3 @@ console.trace(); | ||
if (!consumerSymbol) { | ||
if (!consumerSymbol || !(consumerSymbol.indexOf(' ') < 0)) { | ||
console.log('Consumer: Unable to process profile request, the "symbol" argument is empty.'); | ||
@@ -587,0 +587,0 @@ console.trace(); |
@@ -20,4 +20,4 @@ const connection = require('./connection/index'), | ||
version: '3.1.40' | ||
version: '3.1.41' | ||
}; | ||
})(); |
{ | ||
"name": "@barchart/marketdata-api-js", | ||
"version": "3.1.40", | ||
"version": "3.1.41", | ||
"description": "Barchart client library for streaming market data from JERQ servers using JavaScript", | ||
@@ -5,0 +5,0 @@ "author": { |
Sorry, the diff of this file is too big to display
503109