mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-12 13:16:19 +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