mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-28 05:10:30 +00:00
Sort identities by provider order
This commit is contained in:
parent
0a3381471d
commit
54014e0ffa
1 changed files with 1 additions and 1 deletions
|
|
@ -61,7 +61,7 @@ namespace MediaBrowser.Controller.Providers
|
|||
}
|
||||
} while (changesMade);
|
||||
|
||||
return identities.Select(id => id.Identity);
|
||||
return identities.OrderBy(id => id.Order).Select(id => id.Identity);
|
||||
}
|
||||
|
||||
private class IdentityPair
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue