Browse Source
			
			
			fix js files client for user names with spaces
			
				Signed-off-by: Robin Appelman <robin@icewind.nl>
			
			
				pull/11151/head
			
			
		 
		
			
				
					
						
						Robin Appelman
					
					7 years ago
					
				 
				
			 
		 
		
			
				
				  
				  No known key found for this signature in database
				  
				  	
						GPG Key ID: 42B69D8A64526EFB
				  	
				  
				
			
		
		
		
	
		
			
				 1 changed files with 
1 additions and 
1 deletions
			 
			
		 
		
			
				- 
					
					
					 
					core/js/files/client.js
				
 
			
		
		
			
				
					
					
						
							
								
									
										
											
	
		
			
				
					| 
						
						
							
								
							
						
						
					 | 
				
				 | 
				
					@ -271,7 +271,7 @@ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
							 * @return {Array.<FileInfo>} array of file info | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
							 */ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
							_parseFileInfo: function(response) { | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
								var path = response.href; | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
								var path = decodeURIComponent(response.href); | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
								if (path.substr(0, this._root.length) === this._root) { | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
									path = path.substr(this._root.length); | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
								} | 
				
			
			
		
	
	
		
			
				
					| 
						
							
								
							
						
						
						
					 | 
				
				 | 
				
					
  |