mirror of
https://github.com/scratchfoundation/scratch-audio.git
synced 2024-12-22 14:02:29 -05:00
Remove unnecessary promise wrappers
This commit is contained in:
parent
29b2e7ebc7
commit
aee73d97a5
1 changed files with 2 additions and 2 deletions
|
@ -156,7 +156,7 @@ class AudioEngine {
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
// If the file is empty, create an empty sound
|
// If the file is empty, create an empty sound
|
||||||
if (sound.data.length === 0) {
|
if (sound.data.length === 0) {
|
||||||
return Promise.resolve(this._emptySound());
|
return this._emptySound();
|
||||||
}
|
}
|
||||||
|
|
||||||
// The audio context failed to parse the sound data
|
// The audio context failed to parse the sound data
|
||||||
|
@ -166,7 +166,7 @@ class AudioEngine {
|
||||||
const bufferCopy2 = sound.data.buffer.slice(0);
|
const bufferCopy2 = sound.data.buffer.slice(0);
|
||||||
// Try decoding as adpcm
|
// Try decoding as adpcm
|
||||||
return new ADPCMSoundDecoder(this.audioContext).decode(bufferCopy2)
|
return new ADPCMSoundDecoder(this.audioContext).decode(bufferCopy2)
|
||||||
.catch(() => Promise.resolve(this._emptySound()));
|
.catch(() => this._emptySound());
|
||||||
})
|
})
|
||||||
.then(
|
.then(
|
||||||
buffer => ([soundId, buffer]),
|
buffer => ([soundId, buffer]),
|
||||||
|
|
Loading…
Reference in a new issue