I suspect this is because of 0002945: Thumbnail creation can generate an exception - MediaPortal Bugtracker
Looking at the fix I see:
specifically Uri.IsWellFormedUriString and reading the documentation for it Uri.IsWellFormedUriString Method (System)
it says:
Looking at the fix I see:
Code:
bool isLocal = false;
if (!String.IsNullOrEmpty(item.Path) && Uri.IsWellFormedUriString(item.Path, UriKind.RelativeOrAbsolute))
{
Uri file = new Uri(item.Path);
if (file.IsUnc || file.IsFile)
{
isLocal = true;
}
}
it says:
and item.Path has a value like the example, meaning that it will always return false, therefore thumbnails will not be auto-generated.