forked from gitea/gitea
		
	Remove unnecessary function call (#3109)
This commit is contained in:
		
							parent
							
								
									5e4427e4e7
								
							
						
					
					
						commit
						68179dc676
					
				| @ -9,7 +9,6 @@ import ( | ||||
| 	"fmt" | ||||
| 	"sort" | ||||
| 
 | ||||
| 	"github.com/Unknwon/com" | ||||
| 	"github.com/Unknwon/paginater" | ||||
| 
 | ||||
| 	"code.gitea.io/gitea/models" | ||||
| @ -192,18 +191,14 @@ func Issues(ctx *context.Context) { | ||||
| 		viewType = "all" | ||||
| 	} else { | ||||
| 		viewType = ctx.Query("type") | ||||
| 		types := []string{"all", "assigned", "created_by"} | ||||
| 		if !com.IsSliceContainsStr(types, viewType) { | ||||
| 			viewType = "all" | ||||
| 		} | ||||
| 
 | ||||
| 		switch viewType { | ||||
| 		case "all": | ||||
| 			filterMode = models.FilterModeAll | ||||
| 		case "assigned": | ||||
| 			filterMode = models.FilterModeAssign | ||||
| 		case "created_by": | ||||
| 			filterMode = models.FilterModeCreate | ||||
| 		case "all": // filterMode already set to All | ||||
| 		default: | ||||
| 			viewType = "all" | ||||
| 		} | ||||
| 	} | ||||
| 
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Ethan Koenig
						Ethan Koenig