allow editing of channel images in the web client

This commit is contained in:
Luke Pulverenti
2013-11-24 18:37:38 -05:00
parent 01a9c07dd8
commit dee2fd5f88
12 changed files with 315 additions and 10 deletions

View File

@@ -61,5 +61,13 @@ namespace MediaBrowser.Controller.LiveTv
return number.ToString("000-") + (Name ?? string.Empty);
}
public override string MediaType
{
get
{
return ChannelType == ChannelType.Radio ? Model.Entities.MediaType.Audio : Model.Entities.MediaType.Video;
}
}
}
}