diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2012-03-31 22:32:20 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2012-03-31 22:32:20 -0400 |
commit | ac81e2b0e32658f454042c4a1b07e1f7b12922f9 (patch) | |
tree | b81f3add6b958fa597abeea56cfbc0ea8966e134 /lib/class | |
parent | f2e01ab7d55d76615007f75fd6aaeda2e1f22628 (diff) | |
download | ampache-ac81e2b0e32658f454042c4a1b07e1f7b12922f9.tar.gz ampache-ac81e2b0e32658f454042c4a1b07e1f7b12922f9.tar.bz2 ampache-ac81e2b0e32658f454042c4a1b07e1f7b12922f9.zip |
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).
Diffstat (limited to 'lib/class')
-rw-r--r-- | lib/class/catalog.class.php | 5 |
1 files changed, 0 insertions, 5 deletions
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++; |