mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 00:39:13 +00:00
fix(feeds): torznab newznab category parsing (#775)
This commit is contained in:
parent
0d6e23f278
commit
81d494ec5c
5 changed files with 12 additions and 12 deletions
|
@ -168,7 +168,7 @@ func (j *NewznabJob) getFeed(ctx context.Context) ([]newznab.FeedItem, error) {
|
|||
}
|
||||
|
||||
// only append if we successfully added to cache
|
||||
items = append(items, i)
|
||||
items = append(items, *i)
|
||||
}
|
||||
|
||||
// send to filters
|
||||
|
|
|
@ -232,7 +232,7 @@ func (j *TorznabJob) getFeed(ctx context.Context) ([]torznab.FeedItem, error) {
|
|||
}
|
||||
|
||||
// only append if we successfully added to cache
|
||||
items = append(items, i)
|
||||
items = append(items, *i)
|
||||
}
|
||||
|
||||
// send to filters
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue