Skip to content

Commit

Permalink
7.2.1 commit
Browse files Browse the repository at this point in the history
  • Loading branch information
XilinJia committed Jan 3, 2025
1 parent 7f74118 commit c589a68
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class EpisodeVM(var episode: Episode, val tag: String) {
var downloadState by mutableIntStateOf(if (episode.downloaded == true) DownloadStatus.State.COMPLETED.ordinal else DownloadStatus.State.UNKNOWN.ordinal)
var viewCount by mutableIntStateOf(episode.viewCount)
var actionButton by mutableStateOf<EpisodeActionButton>(NullActionButton(episode))
var actionRes by mutableIntStateOf(actionButton.getDrawable())
var actionRes by mutableIntStateOf(actionButton.drawable)
var showAltActionsDialog by mutableStateOf(false)
var dlPercent by mutableIntStateOf(0)
var isSelected by mutableStateOf(false)
Expand Down

0 comments on commit c589a68

Please sign in to comment.