balanceofsatoshis 12.6.2 → 12.6.3

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Versions
2
2
 
3
- ## 12.6.2
3
+ ## 12.6.3
4
4
 
5
5
  - `telegram`: Avoid bot crash when receiving an AMP push payment
6
6
 
package/package.json CHANGED
@@ -38,7 +38,7 @@
38
38
  "ln-accounting": "5.0.6",
39
39
  "ln-service": "53.15.0",
40
40
  "ln-sync": "3.12.0",
41
- "ln-telegram": "3.21.2",
41
+ "ln-telegram": "3.21.3",
42
42
  "moment": "2.29.3",
43
43
  "paid-services": "3.15.4",
44
44
  "probing": "2.0.5",
@@ -84,5 +84,5 @@
84
84
  "postpublish": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t alexbosworth/balanceofsatoshis --push .",
85
85
  "test": "tap --branches=1 --functions=1 --lines=1 --statements=1 -t 60 test/arrays/*.js test/balances/*.js test/chain/*.js test/display/*.js test/encryption/*.js test/lnd/*.js test/network/*.js test/nodes/*.js test/peers/*.js test/responses/*.js test/routing/*.js test/services/*.js test/swaps/*.js test/tags/*.js test/telegram/*.js test/wallets/*.js"
86
86
  },
87
- "version": "12.6.2"
87
+ "version": "12.6.3"
88
88
  }
@@ -377,7 +377,7 @@ module.exports = (args, cbk) => {
377
377
  from: ctx.message.from.id,
378
378
  id: connectedId,
379
379
  nodes: getNodes,
380
- reply: n => ctx.reply(n),
380
+ reply: (message, options) => ctx.reply(message, options),
381
381
  working: () => ctx.replyWithChatAction('typing'),
382
382
  });
383
383
  } catch (err) {