warframe-worldstate-parser 2.26.0 → 2.26.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23,7 +23,7 @@ class NightwaveChallenge extends WorldstateObject {
23
23
  * Whether or not this is a daily challenge
24
24
  * @type {Boolean}
25
25
  */
26
- this.isDaily = data.Daily;
26
+ this.isDaily = data.Daily || false;
27
27
 
28
28
  /**
29
29
  * Whether or not the challenge is an elite challenge
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "warframe-worldstate-parser",
3
- "version": "2.26.0",
3
+ "version": "2.26.1",
4
4
  "description": "An Open parser for Warframe's Worldstate in Javascript",
5
5
  "types": "./types/main.d.ts",
6
6
  "main": "main.js",