소스 검색

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 "";
     }
 }