mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-02 02:13:33 +00:00
fix: podcast playback issue resolved
This commit is contained in:
parent
4c9e47379d
commit
499001a269
1 changed files with 3 additions and 3 deletions
|
|
@ -223,9 +223,9 @@ public class MappingUtil {
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Uri getUri(PodcastEpisode podcastEpisode) {
|
private static Uri getUri(PodcastEpisode podcastEpisode) {
|
||||||
return DownloadUtil.getDownloadTracker(App.getContext()).isDownloaded(podcastEpisode.getId())
|
return DownloadUtil.getDownloadTracker(App.getContext()).isDownloaded(podcastEpisode.getStreamId())
|
||||||
? getDownloadUri(podcastEpisode.getId())
|
? getDownloadUri(podcastEpisode.getStreamId())
|
||||||
: MusicUtil.getStreamUri(podcastEpisode.getId());
|
: MusicUtil.getStreamUri(podcastEpisode.getStreamId());
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Uri getDownloadUri(String id) {
|
private static Uri getDownloadUri(String id) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue