Merge pull request #5008 from trevortabaka/fix-gpodder-category-crash

Fix crash when selecting gpodder.net category
This commit is contained in:
ByteHamster 2021-03-08 10:23:04 +01:00 committed by GitHub
commit 9a5f234180
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 12 deletions

View File

@ -1,17 +1,15 @@
package de.danoeh.antennapod.fragment.gpodnet;
import android.os.Bundle;
import androidx.annotation.Nullable;
import org.apache.commons.lang3.Validate;
import java.util.List;
import de.danoeh.antennapod.core.sync.gpoddernet.GpodnetService;
import de.danoeh.antennapod.core.sync.gpoddernet.GpodnetServiceException;
import de.danoeh.antennapod.core.sync.gpoddernet.model.GpodnetPodcast;
import de.danoeh.antennapod.core.sync.gpoddernet.model.GpodnetTag;
import org.apache.commons.lang3.Validate;
import de.danoeh.antennapod.activity.MainActivity;
import java.util.List;
/**
* Shows all podcasts from gpodder.net that belong to a specific tag.
@ -42,12 +40,6 @@ public class TagFragment extends PodcastListFragment {
tag = args.getParcelable("tag");
}
@Override
public void onActivityCreated(@Nullable Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
((MainActivity) getActivity()).getSupportActionBar().setTitle(tag.getTitle());
}
@Override
protected List<GpodnetPodcast> loadPodcastData(GpodnetService service) throws GpodnetServiceException {
return service.getPodcastsForTag(tag, PODCAST_COUNT);