summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorCyrille Bollu <cyrpub@bollu.be>2019-07-19 13:18:56 +0200
committerCyrille Bollu <cyrpub@bollu.be>2019-07-19 13:18:56 +0200
commitdb7b4b3075ad8a6da3d3f9128795d0ece28bfbb5 (patch)
tree06b866bb9b5ffd96bad5411c2c1e757c3b1ba8fd /lib
parentf41c7efdbe93ce4b4ffbe39ec00a023f5f91e192 (diff)
Updates the getCacheDocumentsSelectSql function to also return
the 'resized_copy' field. Signed-off-by: Cyrille Bollu <cyrpub@bollu.be>
Diffstat (limited to 'lib')
-rw-r--r--lib/Db/CacheDocumentsRequestBuilder.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Db/CacheDocumentsRequestBuilder.php b/lib/Db/CacheDocumentsRequestBuilder.php
index a75c4a0a..10b91f79 100644
--- a/lib/Db/CacheDocumentsRequestBuilder.php
+++ b/lib/Db/CacheDocumentsRequestBuilder.php
@@ -77,7 +77,7 @@ class CacheDocumentsRequestBuilder extends CoreRequestBuilder {
/** @noinspection PhpMethodParametersCountMismatchInspection */
$qb->select(
'cd.id', 'cd.type', 'cd.parent_id', 'cd.media_type', 'cd.mime_type', 'cd.url',
- 'cd.local_copy', 'cd.public', 'cd.error', 'cd.creation', 'cd.caching'
+ 'cd.local_copy', 'cd.public', 'cd.error', 'cd.creation', 'cd.caching', 'cd.resized_copy'
)
->from(self::TABLE_CACHE_DOCUMENTS, 'cd');