From ac81e2b0e32658f454042c4a1b07e1f7b12922f9 Mon Sep 17 00:00:00 2001 From: Paul Arthur Date: Sat, 31 Mar 2012 22:32:20 -0400 Subject: Drop mtime check during verify It does more harm than good, by making it difficult to update records if you've changed your metadata settings (or fixed a bug). --- lib/class/catalog.class.php | 5 ----- 1 file changed, 5 deletions(-) (limited to 'lib/class/catalog.class.php') diff --git a/lib/class/catalog.class.php b/lib/class/catalog.class.php index 50c378c9..be31d7e7 100644 --- a/lib/class/catalog.class.php +++ b/lib/class/catalog.class.php @@ -1749,11 +1749,6 @@ class Catalog extends database_object { continue; } - if (filemtime($media->file) <= $media->update_time) { - debug_event('verify', "$media->file has a modification time older than the database record, skipping", 5, 'ampache-catalog'); - continue; - } - $info = self::update_media_from_tags($media, $this->sort_pattern,$this->rename_pattern); if ($info['change']) { $changed++; -- cgit