Revert "FIX for webdav.mediencenter.t-online.de"

This commit is contained in:
Morris Jobke 2015-03-26 00:56:06 +01:00
parent dac4436807
commit 24d0dfc727
1 changed files with 0 additions and 5 deletions

View File

@ -602,11 +602,6 @@ class DAV extends \OC\Files\Storage\Common {
return false; return false;
} }
} else { } else {
// This resolves issues that are flooding the log file due to some malformed
// WebDAV response e.g. T-Mobile's cloud named "Mediencenter"
if (!isset($response['{DAV:}getlastmodified']))
return false;
$remoteMtime = strtotime($response['{DAV:}getlastmodified']); $remoteMtime = strtotime($response['{DAV:}getlastmodified']);
return $remoteMtime > $time; return $remoteMtime > $time;
} }