mirror of
https://github.com/serrebidev/BlindRSS.git
synced 2026-08-13 10:59:27 -07:00
Always display the custom channel name in the article list view #42
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
serrebi/BlindRSS#42
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
It is required to address the inconsistent behavior in the article list view where the channel name column does not reliably show the user‑defined custom name. Currently, in the ListView displaying articles (which includes multiple columns), the fourth column is intended to show the channel name. However, for some channels, the system displays the original feed title from the
<title>tag instead of the custom name configured by the user. This inconsistency appears to stem from differing logic applied across various feed formats.Impact and Rationale
The current behavior undermines the user’s organizational workflow:
Proposed Solution
It is proposed to enforce a unified rule for the channel name display in the article list: the fourth column must always show the custom channel name as set by the user, regardless of the feed format or the content of the original
<title>tag. The original title should be retained internally (for metadata or optional tooltips) but must not override the custom name in the main list view.Expected Behavior
After implementation, the following behavior is expected:
Display Logic
Edge Cases
<title>tag value.UI Consistency
Additional Notes
Fixed in v1.77.5.
Good diagnosis on the symptom — though it turned out the feed format was never actually the trigger. The Feed column always shows the stored channel name; the problem was that refresh was reverting custom names back to the feed's
<title>for channels renamed in older versions of BlindRSS (before the custom-name flag existed, February 2026). Channels whose feeds had no parsable title didn't revert, which made it look format-dependent.What changed:
Thanks for the report!