mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 15:55:25 +03:00
Fix some warnings
609 left
This commit is contained in:
@@ -1794,7 +1794,7 @@ namespace Jellyfin.Api.Controllers
|
||||
return;
|
||||
}
|
||||
|
||||
_logger.LogDebug("Deleting partial HLS file {path}", path);
|
||||
_logger.LogDebug("Deleting partial HLS file {Path}", path);
|
||||
|
||||
try
|
||||
{
|
||||
@@ -1802,7 +1802,7 @@ namespace Jellyfin.Api.Controllers
|
||||
}
|
||||
catch (IOException ex)
|
||||
{
|
||||
_logger.LogError(ex, "Error deleting partial stream file(s) {path}", path);
|
||||
_logger.LogError(ex, "Error deleting partial stream file(s) {Path}", path);
|
||||
|
||||
var task = Task.Delay(100);
|
||||
task.Wait();
|
||||
@@ -1810,7 +1810,7 @@ namespace Jellyfin.Api.Controllers
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.LogError(ex, "Error deleting partial stream file(s) {path}", path);
|
||||
_logger.LogError(ex, "Error deleting partial stream file(s) {Path}", path);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user