Skip to content

Community features#899

Open
burikoni wants to merge 5 commits intocrackededed:masterfrom
burikoni:community-features
Open

Community features#899
burikoni wants to merge 5 commits intocrackededed:masterfrom
burikoni:community-features

Conversation

@burikoni
Copy link

@burikoni burikoni commented Mar 6, 2026

update Spanish translation

sorted following streams

Requested at: #867 (comment)

Sorted by viewers or start of broadcast

Screenshot_20260306_164509

activate notifications when following a user

Requested at: #867 (comment)

Option to not automatically activate notifications when following a user.

update category title in vods

Requested at: #322

Comment on lines +78 to +88
val sorted = if (order == "asc") {
when(sort) {
"started_at" -> list.sortedWith(compareBy(nullsLast()) { it.startedAt })
else -> list.sortedWith(compareBy(nullsLast()) { it.viewerCount })
}
} else {
when(sort) {
"started_at" -> list.sortedWith(compareByDescending(nullsFirst()) { it.startedAt })
else -> list.sortedWith(compareByDescending(nullsFirst()) { it.viewerCount })
}
}
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this will not work if there are more than 100 follows

Comment on lines 44 to +52
root.setOnClickListener {
item?.vodPosition?.let { position ->
if (item.gameId != null || item.gameSlug != null || item.gameName != null) {
(fragment.parentFragment as? PlayerFragment)?.updateCategoryInfo(
gameId = item.gameId,
gameSlug = item.gameSlug,
gameName = item.gameName
)
}
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the game will not get updated when seeking or when just watching the vod so i don't think i want to add this until that's fixed

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well, it is a temporary solution until the system is updated. Personally, I don't think it's sensible to keep updating the category as time goes by. For now, I only placed it when clicking on the category and when entering the VOD.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants