diff --git a/app/gabsocial/actions/notifications.js b/app/gabsocial/actions/notifications.js index 2f4a234d1..c16d87226 100644 --- a/app/gabsocial/actions/notifications.js +++ b/app/gabsocial/actions/notifications.js @@ -104,7 +104,7 @@ export function updateNotificationsQueue(notification, intlMessages, intlLocale, if (playSound && !filtered) { dispatch({ type: NOTIFICATIONS_UPDATE_NOOP, - meta: { sound: 'ribbit' }, + meta: { sound: 'boop' }, }); } diff --git a/app/gabsocial/middleware/sounds.js b/app/gabsocial/middleware/sounds.js index 167520776..032bc804b 100644 --- a/app/gabsocial/middleware/sounds.js +++ b/app/gabsocial/middleware/sounds.js @@ -21,7 +21,7 @@ const play = audio => { } } - // audio.play(); + audio.play(); }; export default function soundsMiddleware() { @@ -36,16 +36,6 @@ export default function soundsMiddleware() { type: 'audio/mpeg', }, ]), - ribbit: createAudio([ - { - src: '/sounds/ribbit.ogg', - type: 'audio/ogg', - }, - { - src: '/sounds/ribbit.mp3', - type: 'audio/mpeg', - }, - ]), }; return () => next => action => { diff --git a/public/sounds/boop.mp3 b/public/sounds/boop.mp3 new file mode 100644 index 000000000..bf9c3c1aa Binary files /dev/null and b/public/sounds/boop.mp3 differ diff --git a/public/sounds/boop.ogg b/public/sounds/boop.ogg new file mode 100644 index 000000000..a6551c9fd Binary files /dev/null and b/public/sounds/boop.ogg differ