This needs to be false or the API is broken

This commit is contained in:
TwistedUmbrellaX 2024-11-17 09:15:40 -05:00
parent 0b31117772
commit fcaff967f0

View File

@ -41,7 +41,7 @@ namespace IntroSkipper.Manager
{ {
try try
{ {
var existingSegments = await _mediaSegmentManager.GetSegmentsAsync(episode.EpisodeId, null, true).ConfigureAwait(false); var existingSegments = await _mediaSegmentManager.GetSegmentsAsync(episode.EpisodeId, null, false).ConfigureAwait(false);
await Task.WhenAll(existingSegments.Select(s => _mediaSegmentManager.DeleteSegmentAsync(s.Id))).ConfigureAwait(false); await Task.WhenAll(existingSegments.Select(s => _mediaSegmentManager.DeleteSegmentAsync(s.Id))).ConfigureAwait(false);
} }
catch (Exception vs) catch (Exception vs)