Sort identities by provider order

This commit is contained in:
Thomas Gillen 2014-05-08 00:37:33 +01:00
parent 0a3381471d
commit 54014e0ffa
1 changed files with 1 additions and 1 deletions

View File

@ -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