revert single/multi transition. too risky for now.
This commit is contained in:
parent
2beb9861e4
commit
c59e49a8ed
|
@ -43,19 +43,6 @@ namespace MediaBrowser.Common.Extensions
|
||||||
/// <param name="type">The type.</param>
|
/// <param name="type">The type.</param>
|
||||||
/// <returns>Guid.</returns>
|
/// <returns>Guid.</returns>
|
||||||
public static Guid GetMBId(this string str, Type type)
|
public static Guid GetMBId(this string str, Type type)
|
||||||
{
|
|
||||||
return str.GetMBId(type, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets the MB id.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="str">The STR.</param>
|
|
||||||
/// <param name="type">The type.</param>
|
|
||||||
/// <param name="isInMixedFolder">if set to <c>true</c> [is in mixed folder].</param>
|
|
||||||
/// <returns>Guid.</returns>
|
|
||||||
/// <exception cref="System.ArgumentNullException">type</exception>
|
|
||||||
public static Guid GetMBId(this string str, Type type, bool isInMixedFolder)
|
|
||||||
{
|
{
|
||||||
if (type == null)
|
if (type == null)
|
||||||
{
|
{
|
||||||
|
@ -64,11 +51,6 @@ namespace MediaBrowser.Common.Extensions
|
||||||
|
|
||||||
var key = type.FullName + str.ToLower();
|
var key = type.FullName + str.ToLower();
|
||||||
|
|
||||||
if (isInMixedFolder)
|
|
||||||
{
|
|
||||||
key += "InMixedFolder";
|
|
||||||
}
|
|
||||||
|
|
||||||
return key.GetMD5();
|
return key.GetMD5();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -101,7 +101,7 @@ namespace MediaBrowser.Controller.Entities
|
||||||
|
|
||||||
if (item.Id == Guid.Empty)
|
if (item.Id == Guid.Empty)
|
||||||
{
|
{
|
||||||
item.Id = item.Path.GetMBId(item.GetType(), item.IsInMixedFolder);
|
item.Id = item.Path.GetMBId(item.GetType());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (item.DateCreated == DateTime.MinValue)
|
if (item.DateCreated == DateTime.MinValue)
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
using MediaBrowser.Common.Extensions;
|
using MediaBrowser.Common.Net;
|
||||||
using MediaBrowser.Common.Net;
|
|
||||||
using MediaBrowser.Controller.Configuration;
|
using MediaBrowser.Controller.Configuration;
|
||||||
using MediaBrowser.Controller.Entities;
|
using MediaBrowser.Controller.Entities;
|
||||||
using MediaBrowser.Controller.Entities.Movies;
|
using MediaBrowser.Controller.Entities.Movies;
|
||||||
|
@ -377,7 +376,7 @@ namespace MediaBrowser.Providers.Movies
|
||||||
/// <param name="language">The language.</param>
|
/// <param name="language">The language.</param>
|
||||||
/// <param name="cancellationToken">The cancellation token</param>
|
/// <param name="cancellationToken">The cancellation token</param>
|
||||||
/// <returns>Task{System.String}.</returns>
|
/// <returns>Task{System.String}.</returns>
|
||||||
public virtual async Task<string> AttemptFindId(string name, int? year, string language, CancellationToken cancellationToken)
|
private async Task<string> AttemptFindId(string name, int? year, string language, CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
string url3 = string.Format(Search3, UrlEncode(name), ApiKey, language);
|
string url3 = string.Format(Search3, UrlEncode(name), ApiKey, language);
|
||||||
TmdbMovieSearchResults searchResult = null;
|
TmdbMovieSearchResults searchResult = null;
|
||||||
|
|
|
@ -34,7 +34,7 @@ namespace MediaBrowser.Server.Implementations.Library
|
||||||
item.Parent = args.Parent;
|
item.Parent = args.Parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
item.Id = item.Path.GetMBId(item.GetType(), item.IsInMixedFolder);
|
item.Id = item.Path.GetMBId(item.GetType());
|
||||||
|
|
||||||
// If the resolver didn't specify this
|
// If the resolver didn't specify this
|
||||||
if (string.IsNullOrEmpty(item.DisplayMediaType))
|
if (string.IsNullOrEmpty(item.DisplayMediaType))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user