mirror of
https://gitlab.com/ultrasonic/ultrasonic.git
synced 2025-06-15 23:12:08 +03:00
Fix crash on entry unboxing.
Signed-off-by: Yahor Berdnikau <egorr.berd@gmail.com>
This commit is contained in:
parent
12c68d9ebf
commit
85111dd47d
@ -188,7 +188,7 @@ public class SongView extends UpdateView implements Checkable
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int trackNumber = song.getTrack();
|
int trackNumber = (song.getTrack() == null) ? 0 : song.getTrack();
|
||||||
|
|
||||||
if (viewHolder.track != null)
|
if (viewHolder.track != null)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user