Tv vs Series type inconsistency in the UI
Source: Code review (automated)
Date: 2026-09-02
Scope: Recent changes (TV series detection, PR #166)
File(s): src/ArmRipper.WebUi/Views/Jobs/JobDetail.cshtml
Problem
When DiscDb reports Tv, the "final" video-type column shows "Tv" (Model.VideoType.ToString()) while the dropdown maps it to the "series" option. Submitting the form converts Tv → Series, silently losing the original Tv value. This is mostly cosmetic since they're treated equivalently, but the two representations diverge.
Proposed Fix
Normalize Tv to Series at the model level (or display consistently) so the UI and persisted value agree.
Notes
Cosmetic inconsistency; low priority.
Tv vs Series type inconsistency in the UI
Source: Code review (automated)
Date: 2026-09-02
Scope: Recent changes (TV series detection, PR #166)
File(s):
src/ArmRipper.WebUi/Views/Jobs/JobDetail.cshtmlProblem
When DiscDb reports
Tv, the "final" video-type column shows"Tv"(Model.VideoType.ToString()) while the dropdown maps it to the"series"option. Submitting the form convertsTv→Series, silently losing the originalTvvalue. This is mostly cosmetic since they're treated equivalently, but the two representations diverge.Proposed Fix
Normalize
TvtoSeriesat the model level (or display consistently) so the UI and persisted value agree.Notes
Cosmetic inconsistency; low priority.