Skip to content

Commit

Permalink
fix: swap disc and track number (zyrouge#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
zyrouge committed Dec 31, 2023
1 parent 987afb1 commit 68cc3be
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ fun SongInformationDialog(context: ViewContext, song: Song, onDismissRequest: ()
}
}
song.trackNumber?.let {
val discNumber = it % 1000
val trackNumber = it / 1000
val discNumber = it / 1000
val trackNumber = it % 1000
InformationKeyValue(context.symphony.t.DiscNumber) {
LongPressCopyableText(context, discNumber.toString())
}
Expand Down

0 comments on commit 68cc3be

Please sign in to comment.