fix(filters): OPS and RED split Artist and Album (#1398)

* fix(filters): OPS and RED parse and match Artist and Album

* fix(filters): rls raw
This commit is contained in:
ze0s 2024-02-12 14:16:16 +01:00 committed by GitHub
parent 1a23b69bcf
commit 51a7f71372
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 21 additions and 7 deletions

View file

@ -105,6 +105,10 @@ type Release struct {
ActionStatus []ReleaseActionStatus `json:"action_status"`
}
func (r *Release) Raw(s string) rls.Release {
return rls.ParseString(s)
}
type ReleaseActionStatus struct {
ID int64 `json:"id"`
Status ReleasePushStatus `json:"status"`