Skip to content

Commit

Permalink
fix query on null on GS Setup
Browse files Browse the repository at this point in the history
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
  • Loading branch information
ArtificialOwl committed Apr 26, 2021
1 parent 2751aa5 commit ea66b6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/AppInfo/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public function registerMountProvider(IServerContainer $container) {
return;
}
$mountProviderCollection = $container->getMountProviderCollection();
$mountProviderCollection->registerProvider($this->container->query(MountProvider::class));
$mountProviderCollection->registerProvider($container->get(MountProvider::class));
}


Expand Down

0 comments on commit ea66b6b

Please sign in to comment.