diff --git a/modules/angular2/src/common/pipes/async_pipe.ts b/modules/angular2/src/common/pipes/async_pipe.ts index 09c11063f5..0c6eb13482 100644 --- a/modules/angular2/src/common/pipes/async_pipe.ts +++ b/modules/angular2/src/common/pipes/async_pipe.ts @@ -81,6 +81,7 @@ export class AsyncPipe implements PipeTransform, OnDestroy { if (isPresent(obj)) { this._subscribe(obj); } + this._latestReturnedValue = this._latestValue; return this._latestValue; }