From aabf35644cea2c37a8503fd471f6b7afee006bce Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Thu, 25 Aug 2022 11:38:32 +0200 Subject: [PATCH] wip #5399 @0.25 --- app/Models/Traits/FluidbookPlayerBranches.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Models/Traits/FluidbookPlayerBranches.php b/app/Models/Traits/FluidbookPlayerBranches.php index 746da72e1..3d95e1af5 100644 --- a/app/Models/Traits/FluidbookPlayerBranches.php +++ b/app/Models/Traits/FluidbookPlayerBranches.php @@ -34,12 +34,12 @@ trait FluidbookPlayerBranches protected static function getFluidbookPlayerBaseDirectory() { - return Files::mkdir(resource_path('fluidbookpublication/player')) . '/'; + return Files::mkdir(resource_path('fluidbookpublication/player')); } protected function getActiveBranches() { - $cacheFile =self::getFluidbookPlayerBaseDirectory() . '/activebranches'; + $cacheFile =self::getFluidbookPlayerBaseDirectory() . 'activebranches'; return json_decode(file_get_contents($cacheFile)); } -- 2.39.5