diff --git a/src/NzbDrone.Core/MediaFiles/Commands/DownloadedEpisodesScanCommand.cs b/src/NzbDrone.Core/MediaFiles/Commands/DownloadedEpisodesScanCommand.cs
index c9abe533a..189178b32 100644
--- a/src/NzbDrone.Core/MediaFiles/Commands/DownloadedEpisodesScanCommand.cs
+++ b/src/NzbDrone.Core/MediaFiles/Commands/DownloadedEpisodesScanCommand.cs
@@ -4,6 +4,14 @@ namespace NzbDrone.Core.MediaFiles.Commands
{
public class DownloadedEpisodesScanCommand : Command
{
+ public override bool SendUpdatesToClient
+ {
+ get
+ {
+ return SendUpdates;
+ }
+ }
+ public bool SendUpdates { get; set; }
}
}
\ No newline at end of file
diff --git a/src/UI/.idea/jsLinters/jshint.xml b/src/UI/.idea/jsLinters/jshint.xml
index 4e0df49ad..e85398a55 100644
--- a/src/UI/.idea/jsLinters/jshint.xml
+++ b/src/UI/.idea/jsLinters/jshint.xml
@@ -8,16 +8,16 @@
-
-
+
+
diff --git a/src/UI/Wanted/Missing/MissingLayout.js b/src/UI/Wanted/Missing/MissingLayout.js
index cee0b33b4..234e7cfea 100644
--- a/src/UI/Wanted/Missing/MissingLayout.js
+++ b/src/UI/Wanted/Missing/MissingLayout.js
@@ -131,6 +131,14 @@ define(
title: 'Season Pass',
icon : 'icon-bookmark',
route: 'seasonpass'
+ },
+ {
+ title: 'Rescan Drone Factory Folder',
+ icon : 'icon-refresh',
+ command: 'downloadedepisodesscan',
+ properties: {
+ sendUpdates: true
+ }
}
]
};