Fix Web UI trying to save user settings when logged out (#30324)
This commit is contained in:
		@@ -20,7 +20,7 @@ export function changeSetting(path, value) {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
const debouncedSave = debounce((dispatch, getState) => {
 | 
			
		||||
  if (getState().getIn(['settings', 'saved'])) {
 | 
			
		||||
  if (getState().getIn(['settings', 'saved']) || !getState().getIn(['meta', 'me'])) {
 | 
			
		||||
    return;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user