Browse Source

Fixed a bug where a newly created album does not show in the albums pane because of the old cache copy

Roman 10 years ago
parent
commit
1671517f41
2 changed files with 8 additions and 2 deletions
  1. 4 1
      assets/js/album.js
  2. 4 1
      assets/min/main.js

+ 4 - 1
assets/js/album.js

@@ -113,7 +113,10 @@ album = {
 
 					if (data===true) data = 1; // Avoid first album to be true
 
-					if (data!==false&&isNumber(data)) lychee.goto(data);
+					if (data!==false&&isNumber(data)) {
+                        albums.refresh();
+                        lychee.goto(data);
+                    }
 					else lychee.error(null, params, data);
 
 				});

+ 4 - 1
assets/min/main.js

@@ -256,7 +256,10 @@ album = {
 
 					if (data===true) data = 1; // Avoid first album to be true
 
-					if (data!==false&&isNumber(data)) lychee.goto(data);
+					if (data!==false&&isNumber(data)) {
+                        albums.refresh();
+                        lychee.goto(data);
+                    }
 					else lychee.error(null, params, data);
 
 				});