You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-19 20:23:18 +03:00
Add some logging around switching rooms
... which I wish had been there when I was staring at a rageshake.
This commit is contained in:
@ -644,6 +644,17 @@ module.exports = React.createClass({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (roomInfo.room_alias) {
|
||||||
|
console.log(
|
||||||
|
`Switching to room alias ${roomInfo.room_alias} at event ` +
|
||||||
|
newState.initialEventId,
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
console.log(`Switching to room id ${roomInfo.room_id} at event ` +
|
||||||
|
newState.initialEventId,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
// Wait for the first sync to complete so that if a room does have an alias,
|
// Wait for the first sync to complete so that if a room does have an alias,
|
||||||
// it would have been retrieved.
|
// it would have been retrieved.
|
||||||
let waitFor = q(null);
|
let waitFor = q(null);
|
||||||
|
@ -902,6 +902,9 @@ var TimelinePanel = React.createClass({
|
|||||||
|
|
||||||
var onError = (error) => {
|
var onError = (error) => {
|
||||||
this.setState({timelineLoading: false});
|
this.setState({timelineLoading: false});
|
||||||
|
console.error(
|
||||||
|
`Error loading timeline panel at ${eventId}: ${error}`,
|
||||||
|
);
|
||||||
var msg = error.message ? error.message : JSON.stringify(error);
|
var msg = error.message ? error.message : JSON.stringify(error);
|
||||||
var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user