Skip to content

Commit

Permalink
Missing call to done in the catch
Browse files Browse the repository at this point in the history
  • Loading branch information
GogoVega committed Aug 20, 2024
1 parent f4416a5 commit cbc1a86
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib/nodes/firebase-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@ export class FirebaseClient {
} catch (error) {
// done(error) not yet supported for close event
this.node.error(error);
done();
}
})();
}
Expand Down Expand Up @@ -399,6 +400,7 @@ export class FirebaseClient {
} catch (error) {
// done(error) not yet supported for close event
this.node.error(error);
done();
}
}

Expand Down

0 comments on commit cbc1a86

Please sign in to comment.