Skip to content

Commit

Permalink
Merge pull request #1029 from M0rgan01/fix-update-config
Browse files Browse the repository at this point in the history
Fix validator errors on UpdateConfig
  • Loading branch information
M0rgan01 authored Nov 26, 2024
2 parents cbd723f + 8a6f393 commit ea295fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/Task/Miscellaneous/UpdateConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public function run(): int
$error = $this->container->getConfigurationValidator()->validate($config);

if ($isLocal && empty($error)) {
$this->container->getLocalChannelConfigurationValidator()->validate($config);
$error = $this->container->getLocalChannelConfigurationValidator()->validate($config);
}

if (!empty($error)) {
Expand Down

0 comments on commit ea295fa

Please sign in to comment.