From 789b698e7a6cb03b178498b822f6de134fcd2b84 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Mon, 12 Sep 2011 13:55:55 +0200 Subject: [PATCH] * Keep checking revision queue. --- src/libtomahawk/playlist.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/libtomahawk/playlist.cpp b/src/libtomahawk/playlist.cpp index 1055250bf..d6576761f 100644 --- a/src/libtomahawk/playlist.cpp +++ b/src/libtomahawk/playlist.cpp @@ -589,7 +589,10 @@ Playlist::checkRevisionQueue() if ( item.oldRev != currentrevision() && item.applyToTip ) // this was applied to the then-latest, but the already-running operation changed it so it's out of date now. fix it { if ( item.oldRev == item.newRev ) + { + checkRevisionQueue(); return; + } item.oldRev = currentrevision(); }