diff options
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/Logging/LogService.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/Logging/LogService.cs b/win/CS/HandBrake.ApplicationServices/Services/Logging/LogService.cs index d440f53f6..95a1ec515 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/Logging/LogService.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/Logging/LogService.cs @@ -16,6 +16,7 @@ namespace HandBrake.ApplicationServices.Services.Logging using System.Collections.Generic; using System.Diagnostics; using System.IO; + using System.Linq; using System.Text; using HandBrake.ApplicationServices.Services.Logging.EventArgs; @@ -64,7 +65,7 @@ namespace HandBrake.ApplicationServices.Services.Logging { lock (this.lockObject) { - return this.logMessages; + return this.logMessages.ToList(); } } } |