Merge branch 'master' into comparisons

This commit is contained in:
BaronGreenback
2021-05-08 17:11:21 +01:00
committed by GitHub
310 changed files with 687 additions and 298 deletions

View File

@@ -600,7 +600,7 @@ namespace Jellyfin.Api.Controllers
{
foreach (var item in dto.Updates)
{
_libraryMonitor.ReportFileSystemChanged(item.Path);
_libraryMonitor.ReportFileSystemChanged(item.Path ?? throw new ArgumentException("Item path can't be null."));
}
return NoContent();