Fix anonymouse view permission check
This commit is contained in:
		
							parent
							
								
									aaf1ff4b2f
								
							
						
					
					
						commit
						1fbecbb03d
					
				@ -117,12 +117,15 @@ function newNote(req, res, next) {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function checkViewPermission(req, note) {
 | 
			
		||||
    if (note.permission == 'private' || !config.allowanonymousView) {
 | 
			
		||||
    if (note.permission == 'private') {
 | 
			
		||||
        if (!req.isAuthenticated() || note.ownerId != req.user.id)
 | 
			
		||||
            return false;
 | 
			
		||||
        else
 | 
			
		||||
            return true;
 | 
			
		||||
    } else {
 | 
			
		||||
        if(!config.allowanonymousView && !req.isAuthenticated()) {
 | 
			
		||||
            return false;
 | 
			
		||||
        }
 | 
			
		||||
        return true;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user