wappsto-redux
Advanced tools
Comparing version 3.0.8 to 3.0.9
@@ -251,2 +251,3 @@ import querystring from 'querystring'; | ||
websockets[stream.name].stop = true; | ||
websockets[stream.name].silent = true; | ||
websockets[stream.name].close(); | ||
@@ -253,0 +254,0 @@ } |
{ | ||
"name": "wappsto-redux", | ||
"version": "3.0.8", | ||
"version": "3.0.9", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -72,4 +72,4 @@ import { createSelector } from "reselect"; | ||
} else if(options.constructor === Object){ | ||
if(parent){ | ||
if(parent.hasOwnProperty(type)){ | ||
if(options.parent){ | ||
if(parent && parent.hasOwnProperty(type)){ | ||
if(parent[type].constructor === Array){ | ||
@@ -142,5 +142,5 @@ for(let i = 0; i < parent[type].length; i++){ | ||
if(entities){ | ||
if(parent){ | ||
if(options.parent){ | ||
result = []; | ||
if(parent.hasOwnProperty(type)){ | ||
if(parent && parent.hasOwnProperty(type)){ | ||
parent[type].forEach((id) => { | ||
@@ -147,0 +147,0 @@ let found = entities[id]; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
48706
1243