added resolution
This commit is contained in:
parent
96f16f9e05
commit
f8b66e8c9e
@ -5,7 +5,7 @@ import "git.milar.in/milarin/anilist"
|
|||||||
type ParsedTorrent struct {
|
type ParsedTorrent struct {
|
||||||
Torrent *Torrent
|
Torrent *Torrent
|
||||||
Anime *anilist.Media
|
Anime *anilist.Media
|
||||||
Name string
|
Title string
|
||||||
Episode int
|
Episode int
|
||||||
Languages []string
|
Languages []string
|
||||||
Resolution
|
Resolution
|
||||||
|
@ -13,6 +13,7 @@ const (
|
|||||||
ResolutionFullHD Resolution = 1080
|
ResolutionFullHD Resolution = 1080
|
||||||
ResolutionHD Resolution = 720
|
ResolutionHD Resolution = 720
|
||||||
ResolutionSD Resolution = 480
|
ResolutionSD Resolution = 480
|
||||||
|
|
||||||
ResolutionUnknown Resolution = 0
|
ResolutionUnknown Resolution = 0
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -25,7 +26,7 @@ func ParseResolution(str string) (Resolution, error) {
|
|||||||
case "SD":
|
case "SD":
|
||||||
return ResolutionSD, nil
|
return ResolutionSD, nil
|
||||||
default:
|
default:
|
||||||
v, err := strconv.Atoi(str)
|
v, err := strconv.Atoi(strings.TrimSuffix(str, "p"))
|
||||||
return Resolution(v), err
|
return Resolution(v), err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user