mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-22 11:03:08 +02:00
fix: Promise.resolve
This commit is contained in:
parent
0085305579
commit
d991eccd3f
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ export function ChiptuneJsPlayer (config: object) {
|
|||
|
||||
ChiptuneJsPlayer.prototype.initialize = function() {
|
||||
if (libopenmptLoadPromise) return libopenmptLoadPromise;
|
||||
if (libopenmpt) return;
|
||||
if (libopenmpt) return Promise.resolve();
|
||||
|
||||
libopenmptLoadPromise = new Promise(async (resolve, reject) => {
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue