Skip to content

Commit

Permalink
Update PackageAdapter.php (#44564)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlterBrains authored Dec 21, 2024
1 parent d19b52d commit e74c6ac
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libraries/src/Installer/Adapter/PackageAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,6 @@ protected function storeExtension()
$this->extension->name = $this->name;
$this->extension->type = 'package';
$this->extension->element = $this->element;
$this->extension->changelogurl = $this->changelogurl;

// There is no folder for packages
$this->extension->folder = '';
Expand All @@ -552,6 +551,9 @@ protected function storeExtension()
$this->extension->params = $this->parent->getParams();
}

// Update changelogurl
$this->extension->changelogurl = $this->changelogurl;

// Update the manifest cache for the entry
$this->extension->manifest_cache = $this->parent->generateManifestCache();

Expand Down

0 comments on commit e74c6ac

Please sign in to comment.