diff options
Diffstat (limited to 'vnext/src/App.js')
-rw-r--r-- | vnext/src/App.js | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/vnext/src/App.js b/vnext/src/App.js index 54326220..7978abe5 100644 --- a/vnext/src/App.js +++ b/vnext/src/App.js @@ -69,9 +69,6 @@ export default class App extends React.Component { if (!jsonMsg.mid) { this.pm.current.onMessage(jsonMsg); } - if (jsonMsg.rid && this.thread.current) { - this.thread.current.onReply(jsonMsg); - } } catch (err) { console.log(err); } @@ -151,12 +148,12 @@ export default class App extends React.Component { } /> <Route exact path="/post" render={(props) => <Post visitor={user} {...props} />} /> <Route exact path="/pm" render={(props) => <Contacts visitor={user} {...props} />} /> - <Route exact path="/pm/:user" render={(props) => <Chat ref={this.pm} visitor={user} {...props} />} /> + <Route exact path="/pm/:user" render={(props) => <Chat connection={this.es} visitor={user} {...props} />} /> <Route exact path="/:user/friends" render={(props) => <Friends user={props.match.params.user} {...props} />} /> <Route exact path="/:user/readers" render={(props) => <Readers user={props.match.params.user} {...props} />} /> <Route exact path="/:user" render={(props) => <Blog key={props.match.params.user} visitor={user} {...props} />} /> <Route exact path="/tag/:tag" render={(props) => <Tag visitor={user} {...props} />} /> - <Route exact path="/:user/:mid" render={(props) => <Thread ref={this.thread} visitor={user} {...props} />} /> + <Route exact path="/:user/:mid" render={(props) => <Thread connection={this.es} visitor={user} {...props} />} /> </Switch> </section> { |