fix(updateInstanceController): remove 'event' field from meta

This commit is contained in:
P. Reis 2024-11-05 09:46:33 -03:00
parent ea24050a27
commit af0211d65b

View file

@ -362,6 +362,7 @@ export const updateInstanceController: AppController = async (c) => {
meta.about = description ?? meta.about; meta.about = description ?? meta.about;
meta.screenshots = screenshot_ids ? screenshots : meta.screenshots; meta.screenshots = screenshot_ids ? screenshots : meta.screenshots;
meta.picture = thumbnailUrl ?? meta.picture; meta.picture = thumbnailUrl ?? meta.picture;
delete meta.event;
return { return {
kind: 0, kind: 0,