Skip to content

Commit

Permalink
fix -1 index
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaphasilor committed Nov 11, 2024
1 parent 94af3c3 commit 03797a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/components/AlbumScreen/track_list_tile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ class TrackListTile extends StatelessWidget {
baseItem: item,
parentItem: parentItem,
listIndex: index,
actualIndex: item.indexNumber ?? -1,
actualIndex: item.indexNumber,
showIndex: showIndex,
showCover: showCover,
showArtists: parentItem?.isArtist != true,
Expand Down

0 comments on commit 03797a1

Please sign in to comment.