From 871e8d78dc4eb4b6c00653c00989888f1cd32ed7 Mon Sep 17 00:00:00 2001 From: fowr <89118232+perdedora@users.noreply.github.com> Date: Wed, 2 Apr 2025 09:05:35 -0300 Subject: [PATCH] context.php: inject missing dependencies to EmbedService.php --- inc/context.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/inc/context.php b/inc/context.php index c5375d89..5ec04c50 100644 --- a/inc/context.php +++ b/inc/context.php @@ -94,8 +94,10 @@ function build_context(array $config): Context { return new EmbedService( $c->get(LogDriver::class), $c->get(OembedExtractor::class), + $c->get(HttpDriver::class), $config['embedding_2'], - $config['embed_thumb_timeout'] + $config['embed_thumb_timeout'], + $config['tmp'], ); } ]);