Compare commits

...

2 Commits

Author SHA1 Message Date
Tyrrrz
e6a9c210ac Merge branch 'master' into diag-tags 2024-09-27 20:02:27 +03:00
Tyrrrz
f83c16f2ba Throw when tags cannot be injected 2024-09-18 21:51:51 +03:00

View File

@ -118,18 +118,12 @@ public partial class DashboardViewModel : ViewModelBase
if (_settingsService.ShouldInjectTags)
{
try
{
await tagInjector.InjectTagsAsync(
download.FilePath!,
download.Video!,
download.CancellationToken
);
}
catch
{
// Media tagging is not critical
}
await tagInjector.InjectTagsAsync(
download.FilePath!,
download.Video!,
download.CancellationToken
);
}
download.Status = DownloadStatus.Completed;