From 12ebffb88572f0b75ae1e8538fb29af78058c28a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Thu, 4 May 2017 12:10:17 +0200 Subject: [PATCH] Do not use getDisplayName for groups MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit it is not supported in Nextcloud 11 https://github.com/nextcloud/server/pull/4690 https://github.com/nextcloud/server/pull/2833 Signed-off-by: Julius Härtl --- lib/Db/Group.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Db/Group.php b/lib/Db/Group.php index f668282b7..4b23fae19 100644 --- a/lib/Db/Group.php +++ b/lib/Db/Group.php @@ -35,7 +35,7 @@ class Group extends RelationalObject { public function getObjectSerialization() { return [ 'uid' => $this->object->getGID(), - 'displayname' => $this->object->getDisplayName() + 'displayname' => $this->object->getGID() ]; } } \ No newline at end of file