🚨 Fixes DeepScan logic warning

This commit is contained in:
Alicia Sykes 2021-12-29 22:47:03 +00:00
parent d60060edfb
commit f1239f3aea
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,7 @@ export default {
if (str === undefined) return undefined;
return str === 'true';
};
if (newItem.tags) newItem.tags = newItem.tags ? strToTags(newItem.tags) : [];
if (newItem.tags) newItem.tags = strToTags(newItem.tags);
if (newItem.statusCheck) newItem.statusCheck = strToBool(newItem.statusCheck);
if (newItem.statusCheckAllowInsecure) {
newItem.statusCheckAllowInsecure = strToBool(newItem.statusCheckAllowInsecure);