MatrixChat: Revert the unnecessary changes in the MatrixChat class.

pull/21833/head
Damir Jelić 2019-11-18 10:23:04 +01:00
parent 9fa8e8238a
commit 5149164010
1 changed files with 2 additions and 3 deletions

View File

@ -1222,7 +1222,7 @@ export default createReactClass({
/** /**
* Called when the session is logged out * Called when the session is logged out
*/ */
_onLoggedOut: async function() { _onLoggedOut: function() {
this.notifyNewScreen('login'); this.notifyNewScreen('login');
this.setStateForNewView({ this.setStateForNewView({
view: VIEWS.LOGIN, view: VIEWS.LOGIN,
@ -1272,9 +1272,8 @@ export default createReactClass({
// particularly noticeable when there are lots of 'limited' /sync responses // particularly noticeable when there are lots of 'limited' /sync responses
// such as when laptops unsleep. // such as when laptops unsleep.
// https://github.com/vector-im/riot-web/issues/3307#issuecomment-282895568 // https://github.com/vector-im/riot-web/issues/3307#issuecomment-282895568
cli.setCanResetTimelineCallback(async function(roomId) { cli.setCanResetTimelineCallback(function(roomId) {
console.log("Request to reset timeline in room ", roomId, " viewing:", self.state.currentRoomId); console.log("Request to reset timeline in room ", roomId, " viewing:", self.state.currentRoomId);
if (roomId !== self.state.currentRoomId) { if (roomId !== self.state.currentRoomId) {
// It is safe to remove events from rooms we are not viewing. // It is safe to remove events from rooms we are not viewing.
return true; return true;