Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix settings icon fetching
Signed-off-by: Julius Härtl <[email protected]>
  • Loading branch information
juliusknorr committed Jul 19, 2018
commit bfc6fc8e500e02b061613c831643da2300b7fa20
2 changes: 1 addition & 1 deletion core/Controller/SvgController.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public function getSvgFromApp(string $app, string $fileName, string $color = 'ff

if ($app === 'settings') {
$path = $this->serverRoot . "/settings/img/$fileName.svg";
return $this->getSvg($path, $color);
return $this->getSvg($path, $color, $fileName);
}

$appPath = \OC_App::getAppWebPath($app);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can't the appmanager do this?

Expand Down