mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
23 lines
482 B
C#
23 lines
482 B
C#
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Model.Configuration;
|
|
|
|
namespace MediaBrowser.Controller.LiveTv
|
|
{
|
|
public class RecordingGroup : Folder
|
|
{
|
|
protected override bool GetBlockUnratedValue(UserConfiguration config)
|
|
{
|
|
// Don't block.
|
|
return false;
|
|
}
|
|
|
|
public override bool SupportsLocalMetadata
|
|
{
|
|
get
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|