taxtank-core 0.23.9 → 0.23.10

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.
@@ -2153,7 +2153,7 @@
2153
2153
  */
2154
2154
  get: function () {
2155
2155
  var isExpired = new Date(this.endDate).getTime() < new Date().getTime();
2156
- return isExpired && ([exports.ServiceSubscriptionStatusEnum.ACTIVE, exports.ServiceSubscriptionStatusEnum.PAST_DUE].includes(this.status));
2156
+ return !isExpired && ([exports.ServiceSubscriptionStatusEnum.ACTIVE, exports.ServiceSubscriptionStatusEnum.PAST_DUE].includes(this.status));
2157
2157
  },
2158
2158
  enumerable: false,
2159
2159
  configurable: true