Browse Source

Fixed an error when try to visit non-public albums

Tobias Reich 11 years ago
parent
commit
75d175b9cc
3 changed files with 11 additions and 3 deletions
  1. 8 1
      assets/js/modules/album.js
  2. 1 0
      assets/js/modules/lychee.js
  3. 2 2
      assets/js/modules/view.js

+ 8 - 1
assets/js/modules/album.js

@@ -46,7 +46,14 @@ album = {
 			lychee.api(params, function(data) {
 			lychee.api(params, function(data) {
 
 
 				if (data==="Warning: Album private!") {
 				if (data==="Warning: Album private!") {
-					lychee.setMode("view");
+					if (document.location.hash.replace("#", "").split("/")[1]!=undefined) {
+						// Display photo only
+						lychee.setMode("view");
+					} else {
+						// Album not public
+						lychee.content.show();
+						lychee.goto("");
+					}
 					return false;
 					return false;
 				}
 				}
 
 

+ 1 - 0
assets/js/modules/lychee.js

@@ -257,6 +257,7 @@ var lychee = {
 
 
 			Mousetrap.unbind('esc');
 			Mousetrap.unbind('esc');
 			$("#button_back, a#next, a#previous").remove();
 			$("#button_back, a#next, a#previous").remove();
+			$(".no_content").remove();
 
 
 			lychee.publicMode = true;
 			lychee.publicMode = true;
 			lychee.viewMode = true;
 			lychee.viewMode = true;

+ 2 - 2
assets/js/modules/view.js

@@ -458,8 +458,8 @@ view = {
 
 
 			lychee.imageview.html(build.imageview(photo.json, photo.isSmall(), visible.controls()));
 			lychee.imageview.html(build.imageview(photo.json, photo.isSmall(), visible.controls()));
 
 
-			if ((album.json&&album.json.content[photo.getID()]&&album.json.content[photo.getID()].nextPhoto==="")||lychee.viewMode) $("a#next").hide();
-			if ((album.json&&album.json.content[photo.getID()]&&album.json.content[photo.getID()].previousPhoto==="")||lychee.viewMode) $("a#previous").hide();
+			if ((album.json&&album.json.content&&album.json.content[photo.getID()]&&album.json.content[photo.getID()].nextPhoto==="")||lychee.viewMode) $("a#next").hide();
+			if ((album.json&&album.json.content&&album.json.content[photo.getID()]&&album.json.content[photo.getID()].previousPhoto==="")||lychee.viewMode) $("a#previous").hide();
 
 
 		},
 		},