stub out cifs support

This commit is contained in:
Luke Pulverenti
2017-04-01 20:36:06 -04:00
parent d4d6314c5a
commit 733b891f52
227 changed files with 38755 additions and 30 deletions

View File

@@ -166,7 +166,11 @@ namespace Emby.Server.Core.IO
private void Restart()
{
Stop();
Start();
if (!_disposed)
{
Start();
}
}
private bool IsLibraryMonitorEnabaled(BaseItem item)
@@ -589,11 +593,13 @@ namespace Emby.Server.Core.IO
}
}
private bool _disposed;
/// <summary>
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
/// </summary>
public void Dispose()
{
_disposed = true;
Dispose(true);
GC.SuppressFinalize(this);
}