Optimize refresh events for scrobble endpoint

This commit is contained in:
Deluan
2021-06-16 10:23:34 -04:00
parent fb7229a53e
commit 86271f0412
3 changed files with 15 additions and 5 deletions
+3
View File
@@ -53,6 +53,9 @@ func (rr *RefreshResource) With(resource string, ids ...string) *RefreshResource
if rr.resources == nil {
rr.resources = make(map[string][]string)
}
if len(ids) == 0 {
rr.resources[resource] = append(rr.resources[resource], Any)
}
for i := range ids {
rr.resources[resource] = append(rr.resources[resource], ids[i])
}