mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-15 01:52:42 +03:00
Merge pull request #3484 from urbit/mp/dojo-subscription-tweak
soto: call resetControllers on mount
This commit is contained in:
commit
15593d69f0
@ -20,7 +20,6 @@ export default class DojoApp extends Component {
|
|||||||
this.store.setStateHandler(this.setState.bind(this));
|
this.store.setStateHandler(this.setState.bind(this));
|
||||||
|
|
||||||
this.state = this.store.state;
|
this.state = this.store.state;
|
||||||
this.resetControllers();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
resetControllers() {
|
resetControllers() {
|
||||||
@ -29,6 +28,7 @@ export default class DojoApp extends Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
|
this.resetControllers();
|
||||||
const channel = new window.channel();
|
const channel = new window.channel();
|
||||||
this.api = new Api(this.props.ship, channel);
|
this.api = new Api(this.props.ship, channel);
|
||||||
this.store.api = this.api;
|
this.store.api = this.api;
|
||||||
|
Loading…
Reference in New Issue
Block a user