Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2017-07-19 20:59:21 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2017-08-01 09:20:16 +0300
commitfd059a25d38213b6f812400ff75df96676433ae4 (patch)
tree1fa98c8d7a226816883f85cfd64323583c64847f /lib/private/Search
parent6fb84ebb71194fa74f7bc7f75b1b6ead0f550686 (diff)
Properly name variable
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'lib/private/Search')
-rw-r--r--lib/private/Search/Result/File.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Search/Result/File.php b/lib/private/Search/Result/File.php
index eb4750d8de3..98ebef8753a 100644
--- a/lib/private/Search/Result/File.php
+++ b/lib/private/Search/Result/File.php
@@ -91,7 +91,7 @@ class File extends \OCP\Search\Result {
$this->path = $path;
$this->size = $data->getSize();
$this->modified = $data->getMtime();
- $this->mime = $data->getMimetype();
+ $this->mime_type = $data->getMimetype();
}
/**