You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-15 11:01:52 +03:00
Don't set busy state at all for background request
This commit is contained in:
@ -141,16 +141,20 @@ export default React.createClass({
|
||||
},
|
||||
|
||||
_requestCallback: function(auth, background) {
|
||||
this.setState({
|
||||
busy: !background,
|
||||
errorText: null,
|
||||
stageErrorText: null,
|
||||
});
|
||||
// only set the busy flag if this is a non-background request
|
||||
if (!background) {
|
||||
this.setState({
|
||||
busy: true,
|
||||
errorText: null,
|
||||
stageErrorText: null,
|
||||
});
|
||||
}
|
||||
return this.props.makeRequest(auth).finally(() => {
|
||||
if (this._unmounted) {
|
||||
return;
|
||||
}
|
||||
if (background) {
|
||||
// only unset the busy flag if this is a non-background request
|
||||
if (!background) {
|
||||
this.setState({
|
||||
busy: false,
|
||||
});
|
||||
|
Reference in New Issue
Block a user