diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2019-01-13 15:49:05 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-13 15:49:05 -0500 |
| commit | f8dd182e422db49d98cc090f4e205cc46517f610 (patch) | |
| tree | a263e80a7c9df09ee9b1a87577e3fedc475961b0 /Emby.Server.Implementations/IO/FileRefresher.cs | |
| parent | f50a997e4061f537e643f813bd873cb202707f0a (diff) | |
| parent | c8e3c1737aaceac39bc532ffb27066a18019e936 (diff) | |
Merge pull request #562 from hawken93/misc_fix
Fix error with uppercase photo extension and fix typo in a log line
Diffstat (limited to 'Emby.Server.Implementations/IO/FileRefresher.cs')
| -rw-r--r-- | Emby.Server.Implementations/IO/FileRefresher.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/IO/FileRefresher.cs b/Emby.Server.Implementations/IO/FileRefresher.cs index 3256ea7e6..c2def33db 100644 --- a/Emby.Server.Implementations/IO/FileRefresher.cs +++ b/Emby.Server.Implementations/IO/FileRefresher.cs @@ -156,7 +156,7 @@ namespace Emby.Server.Implementations.IO continue; } - Logger.LogInformation("{name} ({path}}) will be refreshed.", item.Name, item.Path); + Logger.LogInformation("{name} ({path}) will be refreshed.", item.Name, item.Path); try { |
