forked from noxious/client
Renamed get to getById, map improvement
This commit is contained in:
@ -44,7 +44,7 @@ export function useSoundComposable() {
|
||||
}
|
||||
|
||||
let audio: HTMLAudioElement
|
||||
const cachedSound = await soundStorage.get(soundUrl)
|
||||
const cachedSound = await soundStorage.getById(soundUrl)
|
||||
|
||||
if (cachedSound) {
|
||||
audio = new Audio(`data:audio/mpeg;base64,${cachedSound.base64}`)
|
||||
|
Reference in New Issue
Block a user