Refactor notifying method in PlayQueue.
This commit is contained in:
parent
cacce6d2d0
commit
8b400b48f7
|
@ -82,7 +82,7 @@ abstract class AbstractInfoPlayQueue<T extends ListInfo<StreamInfoItem>>
|
||||||
public void onError(@NonNull final Throwable e) {
|
public void onError(@NonNull final Throwable e) {
|
||||||
Log.e(getTag(), "Error fetching more playlist, marking playlist as complete.", e);
|
Log.e(getTag(), "Error fetching more playlist, marking playlist as complete.", e);
|
||||||
isComplete = true;
|
isComplete = true;
|
||||||
append(); // Notify change
|
notifyChange();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -117,7 +117,7 @@ abstract class AbstractInfoPlayQueue<T extends ListInfo<StreamInfoItem>>
|
||||||
public void onError(@NonNull final Throwable e) {
|
public void onError(@NonNull final Throwable e) {
|
||||||
Log.e(getTag(), "Error fetching more playlist, marking playlist as complete.", e);
|
Log.e(getTag(), "Error fetching more playlist, marking playlist as complete.", e);
|
||||||
isComplete = true;
|
isComplete = true;
|
||||||
append(); // Notify change
|
notifyChange();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -257,13 +257,10 @@ public abstract class PlayQueue implements Serializable {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Appends the given {@link PlayQueueItem}s to the current play queue.
|
* Notifies that a change has occurred.
|
||||||
*
|
|
||||||
* @see #append(List items)
|
|
||||||
* @param items {@link PlayQueueItem}s to append
|
|
||||||
*/
|
*/
|
||||||
public synchronized void append(@NonNull final PlayQueueItem... items) {
|
public synchronized void notifyChange() {
|
||||||
append(List.of(items));
|
broadcast(new AppendEvent(0));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue