Fixed bug that caused the application to crash when playing the last
played media of a feed that was already deleted
This commit is contained in:
parent
2148189430
commit
6488e79827
|
@ -145,9 +145,10 @@ public class FeedManager {
|
|||
unreadItems.add(item);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
/**
|
||||
* Sets the 'read' attribute of all FeedItems of a specific feed to true
|
||||
*
|
||||
* @param context
|
||||
*/
|
||||
public void markFeedRead(Context context, Feed feed) {
|
||||
|
@ -323,12 +324,15 @@ public class FeedManager {
|
|||
|
||||
/** Get a FeedMedia object by the id of the Media object and the feed object */
|
||||
public FeedMedia getFeedMedia(long id, Feed feed) {
|
||||
for (FeedItem item : feed.getItems()) {
|
||||
if (item.getMedia().getId() == id) {
|
||||
return item.getMedia();
|
||||
if (feed != null) {
|
||||
for (FeedItem item : feed.getItems()) {
|
||||
if (item.getMedia().getId() == id) {
|
||||
return item.getMedia();
|
||||
}
|
||||
}
|
||||
}
|
||||
Log.e(TAG, "Couldn't find FeedMedia with id " + id);
|
||||
if (feed == null) Log.e(TAG, "Feed was null");
|
||||
return null;
|
||||
}
|
||||
|
||||
|
@ -371,7 +375,7 @@ public class FeedManager {
|
|||
}
|
||||
|
||||
private void extractFeedlistFromCursor(Context context, PodDBAdapter adapter) {
|
||||
|
||||
|
||||
Cursor feedlistCursor = adapter.getAllFeedsCursor();
|
||||
if (feedlistCursor.moveToFirst()) {
|
||||
do {
|
||||
|
@ -407,7 +411,7 @@ public class FeedManager {
|
|||
} while (feedlistCursor.moveToNext());
|
||||
}
|
||||
feedlistCursor.close();
|
||||
|
||||
|
||||
}
|
||||
|
||||
private ArrayList<FeedItem> extractFeedItemsFromCursor(Context context,
|
||||
|
@ -447,7 +451,8 @@ public class FeedManager {
|
|||
return items;
|
||||
}
|
||||
|
||||
private void extractDownloadLogFromCursor(Context context, PodDBAdapter adapter) {
|
||||
private void extractDownloadLogFromCursor(Context context,
|
||||
PodDBAdapter adapter) {
|
||||
Cursor logCursor = adapter.getDownloadLogCursor();
|
||||
if (logCursor.moveToFirst()) {
|
||||
do {
|
||||
|
|
|
@ -187,6 +187,7 @@ public class PlaybackService extends Service {
|
|||
|
||||
} else {
|
||||
Log.e(TAG, "Media is null");
|
||||
stopSelf();
|
||||
}
|
||||
|
||||
} else if (media != null && status != PlayerStatus.PLAYING) {
|
||||
|
|
Loading…
Reference in New Issue