diff --git a/CHANGELOG.md b/CHANGELOG.md index c94d9bebc..672dcef92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] +### Added +- Add new music video credit templates + ### Fixed - Fix many transcoding failures caused by the colorspace filter - Fix song playback with VAAPI and NVENC diff --git a/ErsatzTV.Application/Search/Commands/RemoveMediaItemsHandler.cs b/ErsatzTV.Application/Search/Commands/RemoveMediaItemsHandler.cs index e46fff69e..7fc265935 100644 --- a/ErsatzTV.Application/Search/Commands/RemoveMediaItemsHandler.cs +++ b/ErsatzTV.Application/Search/Commands/RemoveMediaItemsHandler.cs @@ -2,13 +2,13 @@ using ErsatzTV.Core.Interfaces.Search; namespace ErsatzTV.Application.Search; -public class RemoveMediaItemsHandler : IRequestHandler +public class RemoveMediaItemsHandler : IRequestHandler { private readonly ISearchIndex _searchIndex; public RemoveMediaItemsHandler(ISearchIndex searchIndex) => _searchIndex = searchIndex; - public async Task Handle(ReindexMediaItems request, CancellationToken cancellationToken) + public async Task Handle(RemoveMediaItems request, CancellationToken cancellationToken) { await _searchIndex.RemoveItems(request.MediaItemIds); _searchIndex.Commit();