fix boxset socket events

This commit is contained in:
Luke Pulverenti
2016-12-17 15:52:05 -05:00
parent cc73830cd6
commit 2481c5d9f8
5 changed files with 415 additions and 125 deletions

View File

@@ -103,6 +103,16 @@ namespace MediaBrowser.Controller.Entities
}
}
public override bool CanDelete()
{
if (IsRoot)
{
return false;
}
return base.CanDelete();
}
public override bool RequiresRefresh()
{
var baseResult = base.RequiresRefresh();