From 666e95ea5198ed62088b894f66509bb3fef9fe96 Mon Sep 17 00:00:00 2001 From: Jazz Turner-Baggs Date: Wed, 6 Jul 2022 15:35:04 -0700 Subject: [PATCH] fix: added space --- src/ContactBundle.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ContactBundle.ts b/src/ContactBundle.ts index c76cb573a..501495670 100644 --- a/src/ContactBundle.ts +++ b/src/ContactBundle.ts @@ -51,7 +51,7 @@ export default class ContactBundle implements proto.ContactBundleV1 { try { return proto.PublicKeyBundle.decode(bytes) } catch (e) { - throw new Error("Couldn't decode contact bundle:" + e) + throw new Error("Couldn't decode contact bundle: " + e) } } }