aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/ScheduledTasks/Tasks/SystemUpdateTask.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-04-03 18:50:04 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-04-03 18:50:04 -0400
commit2a77500c6190c00e3783e42ee13042a3476d1ad1 (patch)
tree5f3ec28258c7d392ae2ba2393153eadac98d6b1a /MediaBrowser.Common.Implementations/ScheduledTasks/Tasks/SystemUpdateTask.cs
parent0200911afc125051b4f5e652ef1bebeca984b571 (diff)
add latest translations
Diffstat (limited to 'MediaBrowser.Common.Implementations/ScheduledTasks/Tasks/SystemUpdateTask.cs')
-rw-r--r--MediaBrowser.Common.Implementations/ScheduledTasks/Tasks/SystemUpdateTask.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/MediaBrowser.Common.Implementations/ScheduledTasks/Tasks/SystemUpdateTask.cs b/MediaBrowser.Common.Implementations/ScheduledTasks/Tasks/SystemUpdateTask.cs
index c7a33b075..cf22f8e9a 100644
--- a/MediaBrowser.Common.Implementations/ScheduledTasks/Tasks/SystemUpdateTask.cs
+++ b/MediaBrowser.Common.Implementations/ScheduledTasks/Tasks/SystemUpdateTask.cs
@@ -11,7 +11,7 @@ namespace MediaBrowser.Common.Implementations.ScheduledTasks.Tasks
/// <summary>
/// Plugin Update Task
/// </summary>
- public class SystemUpdateTask : IScheduledTask
+ public class SystemUpdateTask : IScheduledTask, IHasKey
{
/// <summary>
/// The _app host
@@ -140,5 +140,10 @@ namespace MediaBrowser.Common.Implementations.ScheduledTasks.Tasks
{
get { return "Application"; }
}
+
+ public string Key
+ {
+ get { return "SystemUpdateTask"; }
+ }
}
}