Attempt to fix errors

Attempt to fix errors, introduced new errors.
This commit is contained in:
Mario Steele 2025-08-05 11:38:55 -05:00
parent 8187a03419
commit 2e4f644c17
3 changed files with 3 additions and 10 deletions

View file

@ -32,8 +32,6 @@ public static class PlaylistEndpoint
{
var vid = new Video();
vid.MapFrom(video);
await vidRepo.AddAsync(vid, ct, false);
results.videos.Add(vid);
}
await repository.AddAsync(results, ct);
@ -51,7 +49,6 @@ public static class PlaylistEndpoint
else
{
video.MapFrom(f);
await vidRepo.UpdateAsync(video, ct, false);
}
}
@ -64,7 +61,6 @@ public static class PlaylistEndpoint
{
var vres = new Video();
vres.MapFrom(newVid);
await vidRepo.AddAsync(vres, ct, false);
results.videos.Add(vres);
}