Merge pull request #7512 from crobibero/update-plugin

This commit is contained in:
Cody Robibero 2022-03-28 16:34:46 -06:00 committed by GitHub
commit ca67a48140
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,6 +104,10 @@ namespace Emby.Server.Implementations.ScheduledTasks.Tasks
{ {
_logger.LogError(ex, "Error updating {0}", package.Name); _logger.LogError(ex, "Error updating {0}", package.Name);
} }
catch (InvalidDataException ex)
{
_logger.LogError(ex, "Error updating {0}", package.Name);
}
// Update progress // Update progress
lock (progress) lock (progress)