From a99640f00b810fe160cb0f763e9f8eeb4cbe553c Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Thu, 20 Jul 2023 22:04:25 +0200 Subject: [PATCH] fix: set path for view init Signed-off-by: Daniel Kesselberg --- lib/SystemStatistics.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/SystemStatistics.php b/lib/SystemStatistics.php index 26555666..467e0fa2 100644 --- a/lib/SystemStatistics.php +++ b/lib/SystemStatistics.php @@ -40,7 +40,7 @@ class SystemStatistics { public function __construct(IConfig $config, IAppManager $appManager, Installer $installer, Os $os) { $this->config = $config; - $this->view = new View(); + $this->view = new View(''); $this->appManager = $appManager; $this->installer = $installer; $this->os = $os;