Browse Source

Fixed editing tags while searching

Tobias Reich 10 years ago
parent
commit
f36b84ecdf
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/scripts/photo.js

+ 2 - 1
src/scripts/photo.js

@@ -529,8 +529,9 @@ photo.editTags = function(photoIDs) {
 	// Get tags
 	if (visible.photo())						oldTags = photo.json.tags;
 	if (visible.album()&&photoIDs.length===1)	oldTags = album.json.content[photoIDs].tags;
+	if (visible.search()&&photoIDs.length===1)	oldTags = album.json.content[photoIDs].tags;
 	if (visible.album()&&photoIDs.length>1) {
-		var same = true;
+		let same = true;
 		photoIDs.forEach(function(id, index, array) {
 			if(album.json.content[id].tags===album.json.content[photoIDs[0]].tags&&same===true) same = true;
 			else same = false;