mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-26 04:58:08 +00:00
Sort identities by provider order
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user