Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop

This commit is contained in:
syuilo
2023-03-13 20:04:38 +09:00

View File

@@ -72,8 +72,8 @@ export function setVolume(audio: HTMLAudioElement, volume: number): HTMLAudioEle
return audio; return audio;
} }
export function play(type: string) { export function play(type: 'noteMy' | 'note' | 'antenna' | 'channel' | 'notification') {
const sound = ColdDeviceStorage.get('sound_' + type as any); const sound = ColdDeviceStorage.get(`sound_${type}`);
if (sound.type == null) return; if (sound.type == null) return;
playFile(sound.type, sound.volume); playFile(sound.type, sound.volume);
} }