1
0
mirror of https://github.com/funamitech/mastodon synced 2025-01-19 08:13:24 +09:00

[Glitch] Fix notification sounds

Port f3864db409 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Claire 2023-12-11 15:23:30 +01:00
parent 70652e49eb
commit 93c71e2c7c

View File

@ -18,6 +18,6 @@ export const notificationsUpdate = createAction(
playSound: boolean;
}) => ({
payload: args,
meta: { playSound: playSound ? { sound: 'boop' } : undefined },
meta: { sound: playSound ? 'boop' : undefined },
}),
);