Преглед изворни кода

If the initiator no longer exists return UID

It can happen that the share initiator is deleted. Because of the new
resharing behaviour this share then still exists. We just can fetch the
displayname properly.
tags/v9.0.0beta2
Roeland Jago Douma пре 8 година
родитељ
комит
0a33cdee0c
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1
    1
      apps/files_sharing/api/share20ocs.php

+ 1
- 1
apps/files_sharing/api/share20ocs.php Прегледај датотеку

@@ -91,7 +91,7 @@ class Share20OCS {
'id' => $share->getId(),
'share_type' => $share->getShareType(),
'uid_owner' => $share->getSharedBy(),
'displayname_owner' => $sharedBy->getDisplayName(),
'displayname_owner' => $sharedBy !== null ? $sharedBy->getDisplayName() : $share->getSharedBy(),
'permissions' => $share->getPermissions(),
'stime' => $share->getShareTime()->getTimestamp(),
'parent' => null,

Loading…
Откажи
Сачувај