organizer/file_priority_string.go

18 lines
378 B
Go
Raw Permalink Normal View History

2023-01-14 12:11:10 +01:00
package main
import (
"fmt"
"strings"
"git.milar.in/nyaanime/logic"
)
func FilePrio2Str(fp *logic.FilePriority) string {
return fmt.Sprintf("priority: %d | resolution: %s | languages: %s | subtitles: %s",
fp.Priority,
fp.Properties.GetResolution().String(),
strings.Join(fp.Properties.GetLanguages(), ", "),
strings.Join(fp.Properties.GetSubtitles(), ", "),
)
}