aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2023-10-26 16:33:50 +0200
committerGravatar GitHub <noreply@github.com> 2023-10-26 16:33:50 +0200
commit619d3f54a3faaff1b9adf172e090f36faea408c7 (patch)
tree429a4507814c55f19d1cda170144b65814b61436 /app
parentc479d9291cbbbccec6018d2af52f67442e229805 (diff)
Fix searching thumbnails (#5750)
fix https://github.com/FreshRSS/FreshRSS/issues/5749
Diffstat (limited to 'app')
-rw-r--r--app/Models/Entry.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Models/Entry.php b/app/Models/Entry.php
index b70e7e2ab..31aaf67a0 100644
--- a/app/Models/Entry.php
+++ b/app/Models/Entry.php
@@ -293,6 +293,7 @@ HTML;
if ($src != null) {
$result = [
'url' => $src,
+ 'medium' => 'image',
];
yield Minz_Helper::htmlspecialchars_utf8($result);
}