Fix song.hashCode() to work on Android 4.x devices.

Older android releases do not implement java.lang.Long.hashCode.
This commit is contained in:
Adrian Ulrich 2018-12-11 20:17:02 +01:00
parent 7fa8833e20
commit 92a23a09d5

View File

@ -303,6 +303,6 @@ public class Song implements Comparable<Song> {
*/
@Override
public int hashCode() {
return Long.hashCode(id);
return Long.valueOf(id).hashCode();
}
}