more work on establishing credentials

This commit is contained in:
2022-12-14 14:52:16 -08:00
parent 67705aa2d1
commit 10fd1d6028
4 changed files with 17 additions and 12 deletions

View File

@ -11,8 +11,8 @@ export default function() {
put(item) {
this.items.push(item);
if (this.resolvers.length > 0) {
let resolver = this.resolvers.shift();
let resolver = this.resolvers.shift();
if (resolver) {
resolver();
}
},