Fix broken switch statement

This commit is contained in:
Jan Philipp Timme 2019-01-01 15:13:18 +01:00
parent 8dea3f83bc
commit 23277a9159
1 changed files with 4 additions and 10 deletions

View File

@ -70,13 +70,7 @@ func NewSortConfig() qEntrySortConfig {
func isQEntryAttribute(attributeName string) bool {
var isValidAttribute bool
switch attributeName {
case "Id":
case "Status":
case "Date":
case "Size":
case "Sender":
case "Recipients":
case "Reason":
case "Id", "Status", "Date", "Size", "Sender", "Recipients", "Reason":
isValidAttribute = true
default:
isValidAttribute = false