Change ItemId to Guid like all the others

This commit is contained in:
cvium 2019-01-10 15:30:26 +01:00 committed by Joshua Boniface
parent 58af3d4f5c
commit 30fef79120
2 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,5 @@
using System;
namespace MediaBrowser.Controller.Providers
{
public class RemoteSearchQuery<T>
@ -5,7 +7,7 @@ namespace MediaBrowser.Controller.Providers
{
public T SearchInfo { get; set; }
public string ItemId { get; set; }
public Guid ItemId { get; set; }
/// <summary>
/// If set will only search within the given provider

View File

@ -156,7 +156,7 @@ namespace MediaBrowser.Providers.Manager
}).ConfigureAwait(false))
{
// Workaround for tvheadend channel icons
// Workaround for tvheadend channel icons
// TODO: Isolate this hack into the tvh plugin
if (string.IsNullOrEmpty(response.ContentType))
{