aboutsummaryrefslogtreecommitdiff
path: root/app/Models/View.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2024-06-06 22:06:12 +0200
committerGravatar GitHub <noreply@github.com> 2024-06-06 22:06:12 +0200
commit86f48db4a7a422602407fc488b434bbfa3e81b24 (patch)
treea9eb88f36ee0811b5a847edda838faa4d2d1ed9a /app/Models/View.php
parentf99c8d5f54c67e0abc3f3189b4f5e3e4571e114c (diff)
Fix broken cron regression 6541 (#6548)
Fix https://github.com/FreshRSS/FreshRSS/issues/6547 Regression https://github.com/FreshRSS/FreshRSS/pull/6541
Diffstat (limited to 'app/Models/View.php')
-rw-r--r--app/Models/View.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Models/View.php b/app/Models/View.php
index 4823283d3..293bc71ac 100644
--- a/app/Models/View.php
+++ b/app/Models/View.php
@@ -106,8 +106,8 @@ class FreshRSS_View extends Minz_View {
public string $rss_url = '';
public string $rss_base = '';
public bool $internal_rendering = false;
- public string $description;
- public string $image_url;
+ public string $description = '';
+ public string $image_url = '';
// Content preview
public string $fatalError;