From a7ed625d161424daf8ceb893aa8656ccc057aa4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20Klabbers?= Date: Tue, 10 Sep 2019 12:33:25 +0200 Subject: [PATCH] Fixes an issue where a different cache driver is used and Formatter attempts to load the s9e Renderer from the wrong cache. It has to be saved locally so that it can be properly loaded using the spl auto register functionality. --- src/Formatter/FormatterServiceProvider.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Formatter/FormatterServiceProvider.php b/src/Formatter/FormatterServiceProvider.php index f2e068b08..31428c3b2 100644 --- a/src/Formatter/FormatterServiceProvider.php +++ b/src/Formatter/FormatterServiceProvider.php @@ -10,6 +10,7 @@ namespace Flarum\Formatter; use Flarum\Foundation\AbstractServiceProvider; +use Illuminate\Cache\Repository; use Illuminate\Contracts\Container\Container; class FormatterServiceProvider extends AbstractServiceProvider @@ -21,7 +22,7 @@ class FormatterServiceProvider extends AbstractServiceProvider { $this->app->singleton('flarum.formatter', function (Container $container) { return new Formatter( - $container->make('cache.store'), + new Repository($container->make('cache.filestore')), $container->make('events'), $this->app->storagePath().'/formatter' );