From 65c316bd6d1ad32b17ba38a64ea351ecba4aa87d Mon Sep 17 00:00:00 2001 From: Qstick Date: Fri, 9 Dec 2022 22:04:50 -0600 Subject: [PATCH] Fixed: Smb paths fail on Kodi update Fixes #7854 --- src/NzbDrone.Core/Notifications/Xbmc/XbmcService.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/Xbmc/XbmcService.cs b/src/NzbDrone.Core/Notifications/Xbmc/XbmcService.cs index 2118dd971..2cbb057c3 100644 --- a/src/NzbDrone.Core/Notifications/Xbmc/XbmcService.cs +++ b/src/NzbDrone.Core/Notifications/Xbmc/XbmcService.cs @@ -86,7 +86,6 @@ namespace NzbDrone.Core.Notifications.Xbmc 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