From 2e4f4e0b2c4ff5545dd5b50ba68d76a44c9f5b92 Mon Sep 17 00:00:00 2001 From: Julien Oculi Date: Thu, 4 Apr 2024 17:05:12 +0200 Subject: [PATCH] fix(cli): update old code from before breaking change --- cli/send.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cli/send.ts b/cli/send.ts index def2e76..a78dc55 100644 --- a/cli/send.ts +++ b/cli/send.ts @@ -47,8 +47,7 @@ export const cmd = new Command() }) } if (from.startsWith('!')) { - //@ts-ignore try expand - return expand(from.slice(1)) + return Contact.expand(from.slice(1)) } return Contact.fromString(from) })()