mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03:00
Created an ItemsByName query dto
This commit is contained in:
@@ -295,10 +295,6 @@ namespace MediaBrowser.Common.Plugins
|
||||
{
|
||||
InitializeOnServer(!File.Exists(ConfigurationFilePath));
|
||||
}
|
||||
else if (kernel.KernelContext == KernelContext.Ui)
|
||||
{
|
||||
InitializeInUi();
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -309,13 +305,6 @@ namespace MediaBrowser.Common.Plugins
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Starts the plugin in the Ui
|
||||
/// </summary>
|
||||
protected virtual void InitializeInUi()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Disposes the plugins. Undos all actions performed during Init.
|
||||
/// </summary>
|
||||
@@ -335,10 +324,6 @@ namespace MediaBrowser.Common.Plugins
|
||||
{
|
||||
DisposeOnServer(dispose);
|
||||
}
|
||||
else if (Kernel.KernelContext == KernelContext.Ui)
|
||||
{
|
||||
DisposeInUI(dispose);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -350,15 +335,6 @@ namespace MediaBrowser.Common.Plugins
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Releases unmanaged and - optionally - managed resources.
|
||||
/// </summary>
|
||||
/// <param name="dispose"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
|
||||
protected virtual void DisposeInUI(bool dispose)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The _save lock
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user