1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-03 22:57:18 +02:00

Fixed: Smb paths fail on Kodi update

Fixes #7854
This commit is contained in:
Qstick 2022-12-09 22:04:50 -06:00 committed by GitHub
parent 3b46a08606
commit 65c316bd6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,7 +86,6 @@ private void UpdateMovieLibrary(XbmcSettings settings, Movie movie)
if (moviePath != null)
{
moviePath = new OsPath(moviePath).Directory.FullPath.TrimEnd(Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar);
_logger.Debug("Updating movie {0} (Path: {1}) on XBMC host: {2}", movie, moviePath, settings.Address);
}
else