Skip to content

Commit

Permalink
fix: feed title empty on initial app start
Browse files Browse the repository at this point in the history
  • Loading branch information
svenjacobs committed Oct 13, 2024
1 parent 5ba3edf commit 75c61d6
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -455,10 +455,10 @@ class Repository(override val di: DI) : DIAware {
else -> null
},
type =
when (feedId) {
ID_UNSET -> FeedType.TAG
ID_ALL_FEEDS -> FeedType.ALL_FEEDS
ID_SAVED_ARTICLES -> FeedType.SAVED_ARTICLES
when {
tag.isNotBlank() -> FeedType.TAG
feedId == ID_UNSET || feedId == ID_ALL_FEEDS -> FeedType.ALL_FEEDS
feedId == ID_SAVED_ARTICLES -> FeedType.SAVED_ARTICLES
else -> FeedType.FEED
},
unreadCount = unreadCount,
Expand Down

0 comments on commit 75c61d6

Please sign in to comment.