From c0e9f1caad95bd7ca1c3d1794f5b8d9d6c0f4640 Mon Sep 17 00:00:00 2001 From: Ryan Mitchell Date: Tue, 19 Nov 2024 10:08:22 +0000 Subject: [PATCH] :beer: --- src/StaticCaching/Cachers/FileCacher.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/StaticCaching/Cachers/FileCacher.php b/src/StaticCaching/Cachers/FileCacher.php index 8bd6db4751..6f150bc6c6 100644 --- a/src/StaticCaching/Cachers/FileCacher.php +++ b/src/StaticCaching/Cachers/FileCacher.php @@ -68,7 +68,7 @@ public function cachePage(Request $request, $content) $content = $this->normalizeContent($content); $path = $this->getFilePath($url); - + if (! $this->writer->write($path, $content, $this->config('lock_hold_length'))) { return; }