backend-manager 2.5.83 → 2.5.84
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.
package/package.json
CHANGED
|
@@ -217,7 +217,7 @@ SubscriptionResolver.prototype.resolve = function (options) {
|
|
|
217
217
|
// Set cancelled
|
|
218
218
|
if (resolved.status === 'cancelled') {
|
|
219
219
|
resolved.cancelled.timestamp = moment(
|
|
220
|
-
get(resource, 'cancelled_at', 0)
|
|
220
|
+
get(resource, 'cancelled_at', 0) * 1000
|
|
221
221
|
)
|
|
222
222
|
}
|
|
223
223
|
|
|
@@ -291,7 +291,7 @@ SubscriptionResolver.prototype.resolve = function (options) {
|
|
|
291
291
|
// Set cancelled
|
|
292
292
|
if (resolved.status === 'cancelled') {
|
|
293
293
|
resolved.cancelled.timestamp = moment(
|
|
294
|
-
get(resource, 'canceled_at', 0)
|
|
294
|
+
get(resource, 'canceled_at', 0) * 1000
|
|
295
295
|
)
|
|
296
296
|
}
|
|
297
297
|
|