Skip to content

Commit

Permalink
Fix HandlesProfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
HorstOeko committed Nov 12, 2024
1 parent 4f68ff8 commit fbeca2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/traits/HandlesProfiles.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public function getForceDestinationProfileWithDefault(string $defaultProfile): s
*/
public function setForceDestinationProfile(string $forceDestinationProfile)
{
if (!$this->isSupportedProfile($forceDestinationProfile)) {
if ($this->isSupportedProfile($forceDestinationProfile) !== true) {
return $this;
}

Expand Down

0 comments on commit fbeca2c

Please sign in to comment.