From: Richard Kettlewell Date: Sat, 31 Jan 2009 12:29:04 +0000 (+0000) Subject: Disobedience updates last_playing whenever a 'playing' command X-Git-Tag: 4.3~13 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/commitdiff_plain/8484d1bf363e3f2f45e28939aca71f5676e57c81 Disobedience updates last_playing whenever a 'playing' command completes now. This mostly keeps the played so far field correct though it does briefly jump to a wrong value and then back when you unpause. http://code.google.com/p/disorder/issues/detail?id=26 --- diff --git a/disobedience/queue.c b/disobedience/queue.c index f4e92a1..bf77fd0 100644 --- a/disobedience/queue.c +++ b/disobedience/queue.c @@ -41,8 +41,6 @@ static void playing_completed(void *v, /** @brief Called when either the actual queue or the playing track change */ static void queue_playing_changed(void) { - const char *old_id = playing_track ? playing_track->id : 0; - /* Check that the playing track isn't in the queue. There's a race here due * to the fact that we issue the two commands at slightly different times. * If it goes wrong we re-issue and try again, so that we never offer up an @@ -68,8 +66,6 @@ static void queue_playing_changed(void) { playing_track = NULL; q = actual_queue; } - if(!old_id || !playing_track || strcmp(old_id, playing_track->id)) - time(&last_playing); /* for column_length() */ ql_new_queue(&ql_queue, q); /* Tell anyone who cares */ event_raise("queue-list-changed", q); @@ -98,6 +94,7 @@ static void playing_completed(void attribute((unused)) *v, } actual_playing_track = q; queue_playing_changed(); + time(&last_playing); } /** @brief Schedule an update to the queue