You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
882 B
36 lines
882 B
using MediaBrowser.Common.IO;
|
|
using MediaBrowser.Controller;
|
|
using System.IO;
|
|
|
|
namespace MediaBrowser.Server.Startup.Common.Migrations
|
|
{
|
|
public class DeprecatePlugins : IVersionMigration
|
|
{
|
|
private readonly IServerApplicationPaths _appPaths;
|
|
private readonly IFileSystem _fileSystem;
|
|
|
|
public DeprecatePlugins(IServerApplicationPaths appPaths, IFileSystem fileSystem)
|
|
{
|
|
_appPaths = appPaths;
|
|
_fileSystem = fileSystem;
|
|
}
|
|
|
|
public void Run()
|
|
{
|
|
RemovePlugin("MediaBrowser.Plugins.LocalTrailers.dll");
|
|
}
|
|
|
|
private void RemovePlugin(string filename)
|
|
{
|
|
try
|
|
{
|
|
_fileSystem.DeleteFile(Path.Combine(_appPaths.PluginsPath, filename));
|
|
}
|
|
catch
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|