make sure to accept "false" values
This commit is contained in:
parent
3511e62e01
commit
2ab50d57f6
1 changed files with 1 additions and 3 deletions
|
@ -83,9 +83,7 @@ export async function read(DATA_NAME, CLOUD = 0) {
|
|||
let DATA = DATA_ALL;
|
||||
|
||||
// Pull the data out.
|
||||
if (
|
||||
DATA_ALL && DATA_PATH && DATA_PATH != null ? DATA_PATH.length > 0 : false
|
||||
) {
|
||||
if (DATA_ALL != null && DATA_PATH && DATA_PATH != null ? DATA_PATH.length > 0 : false) {
|
||||
let DATA_PATH_SELECTED = String(DATA_PATH.shift()).trim();
|
||||
|
||||
// Get the selected data.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue