Bump packages

This commit is contained in:
Max Isom 2020-10-24 12:32:43 -04:00
parent 4f0ab9b549
commit 599dbce6e6
No known key found for this signature in database
GPG key ID: 25C9B1A7F6798880
15 changed files with 20134 additions and 6734 deletions

View file

@ -52,8 +52,8 @@ export default class implements Command {
await player.forwardSeek(seekTime);
await loading.stop();
} catch (error) {
await loading.stop(errorMsg(error));
} catch (error: unknown) {
await loading.stop(errorMsg(error as Error));
}
}
}