diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2019-01-31 15:20:34 +0900 |
|---|---|---|
| committer | dkanada <dkanada@users.noreply.github.com> | 2019-02-03 19:40:55 +0900 |
| commit | 08ca1337a92c62b68d5a901cdb372b9b6b0a6a02 (patch) | |
| tree | 804536c4c80542c238939010660ef4029f9c060e /Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteCacheFileTask.cs | |
| parent | 07072d9f7bf269926a4d7aad580e2e78c444a2cd (diff) | |
unhide several scheduled tasks and add missing properties
Diffstat (limited to 'Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteCacheFileTask.cs')
| -rw-r--r-- | Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteCacheFileTask.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteCacheFileTask.cs b/Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteCacheFileTask.cs index 52077b242..fc9d57e0b 100644 --- a/Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteCacheFileTask.cs +++ b/Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteCacheFileTask.cs @@ -164,8 +164,6 @@ namespace Emby.Server.Implementations.ScheduledTasks.Tasks /// <value>The name.</value> public string Name => "Cache file cleanup"; - public string Key => "DeleteCacheFiles"; - /// <summary> /// Gets the description. /// </summary> @@ -178,11 +176,13 @@ namespace Emby.Server.Implementations.ScheduledTasks.Tasks /// <value>The category.</value> public string Category => "Maintenance"; + public string Key => "DeleteCacheFiles"; + /// <summary> /// Gets a value indicating whether this instance is hidden. /// </summary> /// <value><c>true</c> if this instance is hidden; otherwise, <c>false</c>.</value> - public bool IsHidden => true; + public bool IsHidden => false; public bool IsEnabled => true; |
