diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2019-03-04 08:24:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-04 08:24:14 +0100 |
commit | aee348c5f561d1166257d060f8153811f41c5d54 (patch) | |
tree | a2c3310d8dcdb6568eef9013ec465dece3f40297 /apps/dav/lib/Connector | |
parent | 78e6bf0daf01e9934f799a9739b7b87244cd512d (diff) | |
download | nextcloud-server-aee348c5f561d1166257d060f8153811f41c5d54.tar.gz nextcloud-server-aee348c5f561d1166257d060f8153811f41c5d54.zip |
Update apps/dav/lib/Connector/Sabre/Node.php
Co-Authored-By: tobiasKaminsky <tobias@nextcloud.com>
Diffstat (limited to 'apps/dav/lib/Connector')
-rw-r--r-- | apps/dav/lib/Connector/Sabre/Node.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/Connector/Sabre/Node.php b/apps/dav/lib/Connector/Sabre/Node.php index b6433e6e0ba..32ba6c53a0c 100644 --- a/apps/dav/lib/Connector/Sabre/Node.php +++ b/apps/dav/lib/Connector/Sabre/Node.php @@ -297,7 +297,7 @@ abstract class Node implements \Sabre\DAV\INode { * @return string */ public function getNoteFromShare($user) { - if ($user == null) { + if ($user === null) { return ''; } |