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

Commit

Permalink
fix(extension): Fix unsubscribing from the extension (#37)
Browse files Browse the repository at this point in the history
Fix #33.
  • Loading branch information
zalmoxisus authored and MikeRyanDev committed Nov 4, 2016
1 parent 1d7caf4 commit f5d068d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class DevtoolsExtension {

connection.subscribe(change => subscriber.next(change));

return connection.unsubscribe();
return connection.unsubscribe;
});
}

Expand Down

0 comments on commit f5d068d

Please sign in to comment.