restored audio

This commit is contained in:
LukePulverenti
2013-02-26 23:19:05 -05:00
parent a6596042a6
commit 3751e14eb1
39 changed files with 1221 additions and 3815 deletions

View File

@@ -518,7 +518,7 @@ namespace MediaBrowser.Common.Implementations.HttpServer
/// <summary>
/// Class ContainerAdapter
/// </summary>
class ContainerAdapter : IContainerAdapter
class ContainerAdapter : IContainerAdapter, IRelease
{
/// <summary>
/// The _app host
@@ -552,5 +552,14 @@ namespace MediaBrowser.Common.Implementations.HttpServer
{
return _appHost.TryResolve<T>();
}
/// <summary>
/// Releases the specified instance.
/// </summary>
/// <param name="instance">The instance.</param>
public void Release(object instance)
{
// Leave this empty so SS doesn't try to dispose our objects
}
}
}