Merge pull request #2870 from Bilb/fix-trim-pubkey-start-message

fix: trim pubkey before starting a convo with them
pull/2874/head
Audric Ackermann 2 years ago committed by GitHub
commit 3416283f5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -86,7 +86,7 @@ export const OverlayMessage = () => {
const pubkeyorOnsTrimmed = pubkeyOrOns.trim();
if (!PubKey.validateWithErrorNoBlinding(pubkeyorOnsTrimmed)) {
await openConvoOnceResolved(pubkeyOrOns);
await openConvoOnceResolved(pubkeyorOnsTrimmed);
return;
}

Loading…
Cancel
Save