make controller project portable

This commit is contained in:
Luke Pulverenti
2016-10-25 15:02:04 -04:00
parent edbe28d9fc
commit ef6b90b8e6
441 changed files with 21169 additions and 18588 deletions

View File

@@ -1140,7 +1140,10 @@ namespace MediaBrowser.Server.Implementations.Persistence
{
var idParts = part.Split('=');
item.SetProviderId(idParts[0], idParts[1]);
if (idParts.Length == 2)
{
item.SetProviderId(idParts[0], idParts[1]);
}
}
}