Skip to content

Commit ea66b6b

Browse files
committed
fix query on null on GS Setup
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
1 parent 2751aa5 commit ea66b6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/AppInfo/Application.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ public function registerMountProvider(IServerContainer $container) {
133133
return;
134134
}
135135
$mountProviderCollection = $container->getMountProviderCollection();
136-
$mountProviderCollection->registerProvider($this->container->query(MountProvider::class));
136+
$mountProviderCollection->registerProvider($container->get(MountProvider::class));
137137
}
138138

139139

0 commit comments

Comments
 (0)