Commit b1992c38 by Oliver Woodman

Don't call doSomeWork if we're preparing

parent 2a82ff35
......@@ -525,7 +525,7 @@ import java.util.List;
notifyAll();
}
}
if (state != ExoPlayer.STATE_IDLE) {
if (state != ExoPlayer.STATE_IDLE && state != ExoPlayer.STATE_PREPARING) {
// The message may have caused something to change that now requires us to do work.
handler.sendEmptyMessage(MSG_DO_SOME_WORK);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment