diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-03-03 22:04:34 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-03-03 22:04:34 +0100 |
commit | af214d9dcd0f4c6058c91875e10f38824582aa74 (patch) | |
tree | 87925e2b1c4ff852a980a37e60c35091fb6d6bdd /apps/gallery/js | |
parent | a5df3f8ea74b53d914a9ebd2687f8ab73b0a201b (diff) | |
download | nextcloud-server-af214d9dcd0f4c6058c91875e10f38824582aa74.tar.gz nextcloud-server-af214d9dcd0f4c6058c91875e10f38824582aa74.zip |
change gallary scanning to support gallaries inside archives
Diffstat (limited to 'apps/gallery/js')
-rw-r--r-- | apps/gallery/js/album_cover.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gallery/js/album_cover.js b/apps/gallery/js/album_cover.js index 4ddac2f2111..d328a2d58e5 100644 --- a/apps/gallery/js/album_cover.js +++ b/apps/gallery/js/album_cover.js @@ -53,7 +53,7 @@ function scanForAlbums(cleanup) { } $('#scanprogressbar').progressbar({ value: (albumCounter/totalAlbums)*100 }).fadeIn(); for(var a in r.paths) { - $.getJSON('ajax/galleryOp.php?operation=partial_create&path='+r.paths[a], function(r) { + $.getJSON('ajax/galleryOp.php',{operation:'partial_create','path':r.paths[a]}, function(r) { if (r.status == 'success') { Albums.add(r.album_details.albumName, r.album_details.imagesCount); |