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

github.com/nextcloud/maps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArne Hamann <kontakt+github@arne.email>2020-01-18 17:43:02 +0300
committerArne Hamann <kontakt+github@arne.email>2020-01-18 17:43:02 +0300
commite129c8174582fd13180ae2f392636efd141ae065 (patch)
treeac54fea5411a4848d5fca8e80602c8f6354e9f9a
parent9a068fac06c9407a95c92018bb190bba59eec756 (diff)
fixed an Typo which was spamming a logfixed-GeoPhotoService
Signed-off-by: Arne Hamann <kontakt+github@arne.email>
-rw-r--r--lib/Service/GeophotoService.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Service/GeophotoService.php b/lib/Service/GeophotoService.php
index 00f7631c..a677b03d 100644
--- a/lib/Service/GeophotoService.php
+++ b/lib/Service/GeophotoService.php
@@ -95,7 +95,7 @@ class GeophotoService {
$file_object->type = $file->getType();
$file_object->mime = $file->getMimetype();
$file_object->lastmod = $file->getMTime();
- $file_object->size = $file->getSize;
+ $file_object->size = $file->getSize();
$file_object->path = $path;
$file_object->hasPreview = in_array($cacheEntry->getMimeType(), $previewEnableMimetypes);
$filesById[] = $file_object;