Skip to content

Commit

Permalink
fix: add missing argument
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Feb 26, 2023
1 parent ab319e8 commit 257357a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/Config/Services.php
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ public static function session(?App $config = null, bool $getShared = true)
public static function siteurifactory(?array $server = null, ?App $config = null, bool $getShared = true)
{
if ($getShared) {
return static::getSharedInstance('siteurifactory', $config);
return static::getSharedInstance('siteurifactory', $server, $config);
}

$config ??= config('App');
Expand Down

0 comments on commit 257357a

Please sign in to comment.