Skip to content

Commit

Permalink
Fixed operations priority
Browse files Browse the repository at this point in the history
  • Loading branch information
SilverFire committed Sep 5, 2019
1 parent d28482c commit 960a467
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/Osimage.php
Expand Up @@ -77,7 +77,7 @@ public function getPanelName()
return $this->panel;
}
/** @var array $softpack */
if ($softpack = $this->getSoftPack() && $softpack['panel']) {
if (($softpack = $this->getSoftPack()) && $softpack['panel']) {
return $softpack['panel'];
}

Expand Down

0 comments on commit 960a467

Please sign in to comment.