Fix double await

This commit is contained in:
Alex Gleason 2024-02-12 13:43:03 -06:00
parent 3de63834f2
commit ca31341e04
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ const updateConfigController: AppController = async (c) => {
await createAdminEvent({
kind: 30078,
content: await await new AdminSigner().nip04.encrypt(pubkey, JSON.stringify(configs)),
content: await new AdminSigner().nip04.encrypt(pubkey, JSON.stringify(configs)),
tags: [['d', 'pub.ditto.pleroma.config']],
}, c);