Browse Source

update action sheet

Luke Pulverenti 9 years ago
parent
commit
0e6f4e510e

+ 3 - 1
MediaBrowser.Model/Configuration/UserConfiguration.cs

@@ -50,12 +50,14 @@ namespace MediaBrowser.Model.Configuration
 
         public bool RememberAudioSelections { get; set; }
         public bool RememberSubtitleSelections { get; set; }
-        
+        public bool EnableEpisodeAutoQueue { get; set; }
+    
         /// <summary>
         /// Initializes a new instance of the <see cref="UserConfiguration" /> class.
         /// </summary>
         public UserConfiguration()
         {
+            EnableEpisodeAutoQueue = true;
             RememberAudioSelections = true;
             RememberSubtitleSelections = true;
             

+ 4 - 0
MediaBrowser.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs

@@ -771,6 +771,8 @@ namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
                         recordPath = Path.ChangeExtension(recordPath, ".mp4");
                     }
 
+                    _libraryMonitor.ReportFileSystemChangeBeginning(recordPath);
+
                     recording.Path = recordPath;
                     recording.Status = RecordingStatus.InProgress;
                     recording.DateLastUpdated = DateTime.UtcNow;
@@ -801,6 +803,8 @@ namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
                     {
                         result.Item2.Release();
                     }
+
+                    _libraryMonitor.ReportFileSystemChangeComplete(recordPath, false);
                 }
             }
             catch (OperationCanceledException)