From 1bb2f421302700d62dae2ee2b6ad8a2db190ad26 Mon Sep 17 00:00:00 2001 From: Ruslan Kabalin Date: Mon, 19 Nov 2012 16:38:39 +0000 Subject: [PATCH] MDL-30740 skydrive: show albums as essentially they are "folders" If you create a folder in SkyDrive and add image to it, it will be calssified as album and, this will not be listed without this patch. --- repository/skydrive/microsoftliveapi.php | 1 + 1 file changed, 1 insertion(+) diff --git a/repository/skydrive/microsoftliveapi.php b/repository/skydrive/microsoftliveapi.php index e19e9a50d5f..bcadcd21dd7 100644 --- a/repository/skydrive/microsoftliveapi.php +++ b/repository/skydrive/microsoftliveapi.php @@ -127,6 +127,7 @@ class microsoft_skydrive extends oauth2_client { foreach ($ret->data as $file) { switch($file->type) { case 'folder': + case 'album': $files[] = array( 'title' => $file->name, 'path' => $file->id, -- 2.43.0