Skip to content
This repository has been archived by the owner on Jul 21, 2020. It is now read-only.

Commit

Permalink
fix(rxjs): correct issue with memorizing subject method accessibility (
Browse files Browse the repository at this point in the history
…#88)

* chore(deps): 5.5.8!!!!

* fix(rxjs): correct issue with memorizing subject method accessibility

* fixup!
  • Loading branch information
ProbablePrime authored Apr 18, 2018
1 parent a954a11 commit 95982b2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
9 changes: 4 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
"@angular/material": "^5.2.4",
"@angular/platform-browser": "^5.2.8",
"@angular/platform-browser-dynamic": "^5.2.8",
"@mcph/miix-std": "^0.2.12",
"@mcph/miix-std": "^0.2.13",
"@ngrx/effects": "^5.2.0",
"@ngrx/entity": "^5.2.0",
"@ngrx/store": "^5.2.0",
Expand Down Expand Up @@ -166,7 +166,7 @@
"parse5": "^3.0.2",
"portfinder": "^1.0.13",
"raygun": "^0.9.1",
"rxjs": "^5.5.8",
"rxjs": "5.5.8",
"tar": "^4.0.1",
"tree-kill": "^1.2.0",
"yargs": "^8.0.2"
Expand Down
2 changes: 1 addition & 1 deletion src/app/editor/shared/memorizingSubject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class MemorizingSubject<T> extends Subject<T> {
}

// tslint:disable-next-line
protected _subscribe(subscriber: Subscriber<T>): Subscription {
_subscribe(subscriber: Subscriber<T>): Subscription {
const subscription = super._subscribe(subscriber);
if (subscription && this.hasSet && !(<ISubscription>subscription).closed) {
subscriber.next(this.value);
Expand Down

0 comments on commit 95982b2

Please sign in to comment.