Skip to content

Commit

Permalink
Fix #816 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkChrisLevy authored and davideast committed Feb 9, 2017
1 parent f9cb5c3 commit 334d89e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/database/firebase_list_factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,11 @@ function firebaseListObservable(ref: firebase.database.Reference | firebase.data
obs.next(initialArray);
hasInitialLoad = true;
}
}, err => {
if (err) {
obs.error(err);
obs.complete();
}
});

return () => {
Expand Down

0 comments on commit 334d89e

Please sign in to comment.