Use m.deferred instead of native Promise

This commit is contained in:
David Sevilla Martín
2018-03-24 17:43:03 -04:00
committed by GitHub
parent 4aad293284
commit 92c8c616e1

View File

@ -122,7 +122,8 @@ class PostStream extends Component {
* @public * @public
*/ */
update() { update() {
if (!this.viewingEnd) return Promise.resolve(); if (!this.viewingEnd) return m.deferred().resolve().promise;
this.visibleEnd = this.count(); this.visibleEnd = this.count();