summaryrefslogtreecommitdiffstats
path: root/core/js/files/client.js
diff options
context:
space:
mode:
authorryanwr <ryantwr@gmail.com>2016-10-22 21:26:21 +0100
committerryanwr <ryantwr@gmail.com>2016-10-24 17:55:47 +0100
commit3e96f33995c522106b645908b4537b25536b8a7d (patch)
treec39d09a2e2ddfdc32e0bdba2fffa449055692f38 /core/js/files/client.js
parent9965a95e3b9aff118fa7a34102e5ac31367ac7e2 (diff)
downloadnextcloud-server-3e96f33995c522106b645908b4537b25536b8a7d.tar.gz
nextcloud-server-3e96f33995c522106b645908b4537b25536b8a7d.zip
Sort favorite files first Issue #1802
Signed-off-by: Ryan Welch <ryantwr@gmail.com>
Diffstat (limited to 'core/js/files/client.js')
-rw-r--r--core/js/files/client.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/core/js/files/client.js b/core/js/files/client.js
index 572f7879e17..ee3efbd5517 100644
--- a/core/js/files/client.js
+++ b/core/js/files/client.js
@@ -287,6 +287,13 @@
data.hasPreview = true;
}
+ var isFavorite = props['{' + Client.NS_OWNCLOUD + '}favorite'];
+ if (!_.isUndefined(isFavorite)) {
+ data.isFavorite = isFavorite === '1';
+ } else {
+ data.isFavorite = false;
+ }
+
var contentType = props['{' + Client.NS_DAV + '}getcontenttype'];
if (!_.isUndefined(contentType)) {
data.mimetype = contentType;