summaryrefslogtreecommitdiffstats
path: root/lib/connector/sabre
diff options
context:
space:
mode:
authorMichael Gapczynski <mtgap@owncloud.com>2013-01-11 21:09:01 -0500
committerMichael Gapczynski <mtgap@owncloud.com>2013-01-11 21:09:01 -0500
commitb30648cb7dc258208fad4dadb297aa1d792fa7ef (patch)
tree62add50d1eb491ea58db728e105757f39e351c7a /lib/connector/sabre
parenta00b9e0a03a7cdb1103415d33d2c3f22e86edffb (diff)
downloadnextcloud-server-b30648cb7dc258208fad4dadb297aa1d792fa7ef.tar.gz
nextcloud-server-b30648cb7dc258208fad4dadb297aa1d792fa7ef.zip
Don't waste time making another call since we know it doesn't exist
Diffstat (limited to 'lib/connector/sabre')
-rw-r--r--lib/connector/sabre/file.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/connector/sabre/file.php b/lib/connector/sabre/file.php
index e0723e12301..1c18a391742 100644
--- a/lib/connector/sabre/file.php
+++ b/lib/connector/sabre/file.php
@@ -98,7 +98,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D
if (isset($properties[self::GETETAG_PROPERTYNAME])) {
return $properties[self::GETETAG_PROPERTYNAME];
}
- return $this->getETagPropertyForPath($this->path);
+ return null;
}
/**