Skip to content

Commit 9e3b9f2

Browse files
committed
upd
1 parent 042e55d commit 9e3b9f2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/billing/cloudpayments.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ userId: ${userId}`
192192
last charge date: ${workspace.lastChargeDate?.toISOString()}
193193
next payment date: ${nextPaymentDate.toISOString()}
194194
workspace id: ${workspace._id.toString()}
195-
debug: ${workspace.isDebug}`
195+
debug: ${Boolean(workspace.isDebug)}`
196196
, TelegramBotURLs.Money));
197197

198198
res.send({
@@ -680,7 +680,8 @@ subscription id: ${body.SubscriptionId}`
680680
amount: ${+body.Amount} ${body.Currency}
681681
next payment date: ${body.NextTransactionDate}
682682
workspace id: ${body.AccountId}
683-
subscription id: ${body.Id}`
683+
subscription id: ${body.Id}
684+
status: ${body.Status}`
684685
, TelegramBotURLs.Money));
685686
HawkCatcher.send(new Error(`[Billing / Recurrent] New recurrent event with ${body.Status} status`), req.body);
686687

0 commit comments

Comments
 (0)