# HG changeset patch # User nenolod # Date 1160041397 25200 # Node ID 043143e4578e035226b8710139f444d885ad6a40 # Parent 7e324a23be67025ee7430531f36db04eab291aca [svn] - ditto for playlist_get_songtime(). diff -r 7e324a23be67 -r 043143e4578e ChangeLog --- a/ChangeLog Thu Oct 05 02:41:57 2006 -0700 +++ b/ChangeLog Thu Oct 05 02:43:17 2006 -0700 @@ -1,3 +1,11 @@ +2006-10-05 09:41:57 +0000 William Pitcock + revision [2601] + - tuples with an mtime of 0 don't need to be checked + + trunk/audacious/playlist.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + + 2006-10-05 09:28:23 +0000 William Pitcock revision [2599] - revert diff -r 7e324a23be67 -r 043143e4578e audacious/playlist.c --- a/audacious/playlist.c Thu Oct 05 02:41:57 2006 -0700 +++ b/audacious/playlist.c Thu Oct 05 02:43:17 2006 -0700 @@ -1623,8 +1623,7 @@ entry = node->data; -// if (!entry->title && entry->length == -1) { - if (!entry->tuple || (entry->tuple->mtime != playlist_get_mtime(entry->filename))){ + if (!entry->tuple || (entry->tuple->mtime > 0 && entry->tuple->mtime != playlist_get_mtime(entry->filename))){ if (playlist_entry_get_info(entry)) song_time = entry->length;