From b57fb6835db957d4509f30be823e27cc0bfd1300 Mon Sep 17 00:00:00 2001 From: cdowdy Date: Tue, 2 Aug 2016 15:06:34 -0400 Subject: [PATCH] fixes #1 for config not being created on install --- src/Html5VideoExtension.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Html5VideoExtension.php b/src/Html5VideoExtension.php index 72828b5..57a6c62 100644 --- a/src/Html5VideoExtension.php +++ b/src/Html5VideoExtension.php @@ -39,6 +39,7 @@ protected function registerTwigPaths() protected function registerTwigFunctions() { $options = ['is_safe' => ['html']]; + $this->getConfig(); return [ 'html5video' => [ 'html5video', $options ], ];