diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-29 13:06:13 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-29 13:06:13 -0400 |
| commit | 8217bafb2402792acc6a8d4a2348d0370977aa0a (patch) | |
| tree | 8e90a9f698ad1102ab5852a1b905f9b22cd4b0cd /MediaBrowser.Server.Implementations/MediaEncoder/MediaEncoder.cs | |
| parent | 33f4b2ed53b90af6dca441cdd52c6f41a66cac17 (diff) | |
use regex instead of indexof with search
Diffstat (limited to 'MediaBrowser.Server.Implementations/MediaEncoder/MediaEncoder.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/MediaEncoder/MediaEncoder.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/MediaEncoder/MediaEncoder.cs b/MediaBrowser.Server.Implementations/MediaEncoder/MediaEncoder.cs index 001ba1e29..1312d49ce 100644 --- a/MediaBrowser.Server.Implementations/MediaEncoder/MediaEncoder.cs +++ b/MediaBrowser.Server.Implementations/MediaEncoder/MediaEncoder.cs @@ -645,7 +645,7 @@ namespace MediaBrowser.Server.Implementations.MediaEncoder } catch (IOException ex) { - _logger.ErrorException("Error converted extracted subtitle {0}", ex, outputPath); + _logger.ErrorException("Error deleting converted subtitle {0}", ex, outputPath); } } } |
