Browse Source

A null check fix to the previous commit

Roman 10 years ago
parent
commit
a0d11ca6b2
1 changed files with 6 additions and 3 deletions
  1. 6 3
      assets/js/album.js

+ 6 - 3
assets/js/album.js

@@ -222,12 +222,15 @@ album = {
 				newTitle = (newTitle==="") ? "Untitled" : newTitle;
 
 				if (visible.album()) {
-					var id = albumIDs[0];
-					
+
 					album.json.title = newTitle;
-					albums.json.content[id].title = newTitle;
 					view.album.title();
 
+					if (albums.json) {
+						var id = albumIDs[0];
+						albums.json.content[id].title = newTitle;
+					}
+
 				} else if (visible.albums()) {
 
 					albumIDs.forEach(function(id) {