Skip to content

Commit e6edc11

Browse files
committed
Fix Icons Path plugin setting not working correctly when using aliases
1 parent d536355 commit e6edc11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/models/Settings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Settings extends Model
2525
public function getIconSetsPath()
2626
{
2727
if ($this->iconSetsPath) {
28-
$this->iconSetsPath = FileHelper::normalizePath(Craft::parseEnv($this->iconSetsPath));
28+
return FileHelper::normalizePath(Craft::parseEnv($this->iconSetsPath));
2929
}
3030

3131
return $this->iconSetsPath;

0 commit comments

Comments
 (0)