瀏覽代碼

Correction de content vide por le runtime Twig markdown

Sangfroid 1 月之前
父節點
當前提交
c2268da5cd
共有 1 個文件被更改,包括 5 次插入2 次删除
  1. 5 2
      src/Twig/AppRuntimeExtension.php

+ 5 - 2
src/Twig/AppRuntimeExtension.php

@@ -14,8 +14,11 @@ class AppRuntimeExtension implements RuntimeExtensionInterface
     {
     }
 
-    public function parse(string $content): string
+    public function parse(?string $content): string
     {
-        return $this->markdownParser->convertToHtml($content);
+        if ($content) {
+            return $this->markdownParser->convertToHtml($content);
+        }
+        return "";
     }
 }