From adf83f08676cfff8ce1e4ce4338046206db3f031 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 14 Jul 2018 23:06:58 +0200 Subject: [PATCH] Fix path --- Module/InfoManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Module/InfoManager.php b/Module/InfoManager.php index 053290d0c..197f0c479 100644 --- a/Module/InfoManager.php +++ b/Module/InfoManager.php @@ -85,7 +85,7 @@ final class InfoManager throw new PathException($this->path); } - $contents = \file_get_contents($this->path . '/info.json'); + $contents = \file_get_contents($this->path); $info = \json_decode($contents === false ? '[]' : $contents, true); $this->info = $info === false ? [] : $info; }