Merge branch 'master' of github.com:codetheweb/muse

This commit is contained in:
Max Isom 2022-02-24 18:24:56 -05:00
commit 3dfd16860b
No known key found for this signature in database
GPG key ID: 25C9B1A7F6798880
4 changed files with 47 additions and 0 deletions

View file

@ -340,6 +340,12 @@ export default class {
return this.queueSize() === 0;
}
stop(): void {
this.disconnect();
this.queuePosition = 0;
this.queue = [];
}
private getHashForCache(url: string): string {
return hasha(url);
}