Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ The format is a modified version of [Keep a Changelog](https://keepachangelog.co
## [Unreleased]
### Fixed
- Fix custom buttons not being added ([@Secozzi](https://github.com/Secozzi)) ([#164](https://github.com/quickdesh/Animiru/pull/164))
- Fix tracks not loading after changing quality ([@Secozzi](https://github.com/Secozzi)) ([#165](https://github.com/quickdesh/Animiru/pull/165))

## [v0.19.7.6] - 2026-06-12
### Improved
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1626,6 +1626,9 @@ class PlayerViewModel @JvmOverloads constructor(
)

_currentVideo.update { _ -> resolvedVideo }
if (hasLoadedTracks.value) {
clearTracks()
}

qualityIndex = Pair(hosterIndex, videoIndex)

Expand Down
Loading