mirror of
https://github.com/nextcloud/server.git
synced 2026-03-10 18:31:16 -04:00
don't report ctime in the archive storage backend since it isn't reliable
This commit is contained in:
parent
7f6a037b8c
commit
758ebe0446
1 changed files with 1 additions and 1 deletions
|
|
@ -57,7 +57,7 @@ class OC_Filestorage_Archive extends OC_Filestorage_Common{
|
|||
return opendir('fakedir://'.$id);
|
||||
}
|
||||
public function stat($path){
|
||||
$ctime=filectime($this->path);
|
||||
$ctime=-1;
|
||||
$path=$this->stripPath($path);
|
||||
if($path==''){
|
||||
$stat=stat($this->path);
|
||||
|
|
|
|||
Loading…
Reference in a new issue