Merge pull request #13 from lcb931023/master

Fix bug with DONE : false filtering
This commit is contained in:
Hamish MacDonald 2019-10-16 16:57:55 +13:00 committed by GitHub
commit 11c59fdc9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -169,7 +169,7 @@ function Wrap()
{
tempDatabase[keys[i]] = db[keys[i]];
}
else if (value.DONE == false)
else if (value.DONE == 'false')
{
tempDatabase[keys[i]] = db[keys[i]];
}