From a1a584f444ef9552a59d05cd337351ca375fc3d5 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 28 Jun 2021 13:09:00 +0000 Subject: [PATCH] External resources are cacheable --- src/Model/Photo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Model/Photo.php b/src/Model/Photo.php index 40bdcf71e3..7de0084e24 100644 --- a/src/Model/Photo.php +++ b/src/Model/Photo.php @@ -283,7 +283,7 @@ class Photo $photo['backend-class'] = ExternalResource::NAME; $photo['backend-ref'] = json_encode(['url' => $url, 'uid' => $uid]); $photo['type'] = $mimetype; - $photo['cacheable'] = false; + $photo['cacheable'] = true; return $photo; }