summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2016-12-23 14:36:05 +0100
committerGitHub <noreply@github.com>2016-12-23 14:36:05 +0100
commit886341aca4951d4b5d3ea846d09c45cd0858fb57 (patch)
tree547fc031fb5177b0a8139154a6b681384f481512 /apps
parentc5cc0d87a86725e03b74d0c7377a7e4d7dab846b (diff)
parent928f11336160ce9f25ad21e891169502b050a65c (diff)
downloadnextcloud-server-886341aca4951d4b5d3ea846d09c45cd0858fb57.tar.gz
nextcloud-server-886341aca4951d4b5d3ea846d09c45cd0858fb57.zip
Merge pull request #2816 from nextcloud/changing_how_favorites_are_serialized
Return explicit values instead of boolean from sabre (#26654)
Diffstat (limited to 'apps')
-rw-r--r--apps/dav/lib/Connector/Sabre/TagsPlugin.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/dav/lib/Connector/Sabre/TagsPlugin.php b/apps/dav/lib/Connector/Sabre/TagsPlugin.php
index ef6bece58bc..59e4ab4546d 100644
--- a/apps/dav/lib/Connector/Sabre/TagsPlugin.php
+++ b/apps/dav/lib/Connector/Sabre/TagsPlugin.php
@@ -250,7 +250,11 @@ class TagsPlugin extends \Sabre\DAV\ServerPlugin
if (is_null($isFav)) {
list(, $isFav) = $this->getTagsAndFav($node->getId());
}
- return $isFav;
+ if ($isFav) {
+ return 1;
+ } else {
+ return 0;
+ }
});
}