mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
add secondary sorting in correct place
This commit is contained in:
parent
ec7d0c3197
commit
abc6f32645
2 changed files with 19 additions and 2 deletions
|
@ -440,7 +440,9 @@ collections:
|
|||
plex_search:
|
||||
all:
|
||||
year.gte: 2010
|
||||
sort_by: audience_rating.desc
|
||||
sort_by:
|
||||
- year.desc
|
||||
- audience_rating.desc
|
||||
limit: 20
|
||||
```
|
||||
|
||||
|
|
|
@ -240,3 +240,18 @@ The Sort Orders available for "Smart" collections are outlined on the **[Smart P
|
|||
trakt_list: https://trakt.tv/users/jawann2002/lists/marvel-cinematic-universe-movies?sort=rank,asc
|
||||
collection_order: added.desc
|
||||
```
|
||||
### Secondary Sorting
|
||||
You can also leverage "Secondary Sorting" This goes beyond the single sort settings you can apply to a collection in Plex.
|
||||
|
||||
???+ example "Example 8 - Secondary Sorting"
|
||||
```yaml
|
||||
collections:
|
||||
Best 2010+ Movies (By Year):
|
||||
smart_filter:
|
||||
all:
|
||||
year.gte: 2010
|
||||
sort_by:
|
||||
- year.desc
|
||||
- audience_rating.desc
|
||||
limit: 20
|
||||
```
|
Loading…
Reference in a new issue