Render 404 when page not found
This commit is contained in:
		
							parent
							
								
									812fd3d956
								
							
						
					
					
						commit
						b7ea154e51
					
				| @ -21,8 +21,9 @@ impl<'r> Responder<'r> for ErrorPage { | ||||
|         warn!("{:?}", self.0); | ||||
| 
 | ||||
|         match self.0 { | ||||
|             Error::NotFound => Err(Status::NotFound), | ||||
|             Error::Unauthorized => Err(Status::NotFound), | ||||
|             Error::NotFound | Error::Unauthorized | Error::Db(diesel::result::Error::NotFound) => { | ||||
|                 Err(Status::NotFound) | ||||
|             } | ||||
|             _ => Err(Status::InternalServerError), | ||||
|         } | ||||
|     } | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user