Fix light mode inputs

This commit is contained in:
Thomas Mathews 2022-12-24 08:11:14 -08:00
parent 1b4d539eef
commit d6dd98f31e
2 changed files with 3 additions and 3 deletions

View file

@ -70,8 +70,8 @@ async function update_profile(profile={}) {
content: JSON.stringify(profile),
tags: [],
};
ev.id = await nostrjs.calculate_id(ev)
ev = await sign_event(ev)
ev.id = await nostrjs.calculate_id(ev);
ev = await sign_event(ev);
broadcast_event(ev);
return ev;
}