Преглед на файлове

Call GetConfiguration just once in function

SenorSmartyPants преди 2 години
родител
ревизия
8f4ac1cb81
променени са 1 файла, в които са добавени 4 реда и са изтрити 2 реда
  1. 4 2
      Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs

+ 4 - 2
Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs

@@ -1814,7 +1814,9 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
                     program.AddGenre("News");
                 }
 
-                if (GetConfiguration().SaveRecordingNFO)
+                var config = GetConfiguration();
+
+                if (config.SaveRecordingNFO)
                 {
                     if (timer.IsProgramSeries)
                     {
@@ -1831,7 +1833,7 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
                     }
                 }
 
-                if (GetConfiguration().SaveRecordingImages)
+                if (config.SaveRecordingImages)
                 {
                     await SaveRecordingImages(recordingPath, program).ConfigureAwait(false);
                 }