don't complain if one image in a bulk revert doesn't exist
This commit is contained in:
parent
d30665d274
commit
3aed2abec7
1 changed files with 2 additions and 1 deletions
|
@ -329,7 +329,8 @@ class Tag_History extends Extension {
|
|||
|
||||
$image = Image::by_id($stored_image_id);
|
||||
if ( ! $image instanceof Image) {
|
||||
throw new ImageDoesNotExist("Error: cannot find any image with the ID = ". $stored_image_id);
|
||||
continue;
|
||||
//throw new ImageDoesNotExist("Error: cannot find any image with the ID = ". $stored_image_id);
|
||||
}
|
||||
|
||||
log_debug("tag_history", 'Reverting tags of Image #'.$stored_image_id.' to ['.$stored_tags.']');
|
||||
|
|
Reference in a new issue