Fixed fresh install crash

This commit is contained in:
ByteHamster 2018-05-03 19:36:40 +02:00
parent 2190101cf9
commit ffdfefc35d

View File

@ -780,6 +780,9 @@ public abstract class PlaybackController {
}
public void resumeServiceNotRunning() {
if (getMedia() == null) {
return;
}
if (getMedia().getMediaType() == MediaType.AUDIO) {
TypedArray res = activity.obtainStyledAttributes(new int[]{
de.danoeh.antennapod.core.R.attr.av_play_big});