From 43648f3728abafc495faf91bc7b2f87acee6342d Mon Sep 17 00:00:00 2001 From: Patrick Niebeling Date: Tue, 25 Aug 2026 15:28:21 +0200 Subject: [PATCH] Use app.svg for the personal settings section icon Was already pending in the working tree; committed unchanged. --- lib/Settings/PersonalSection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Settings/PersonalSection.php b/lib/Settings/PersonalSection.php index 05dc809..213ba0f 100644 --- a/lib/Settings/PersonalSection.php +++ b/lib/Settings/PersonalSection.php @@ -29,6 +29,6 @@ class PersonalSection implements IIconSection { } public function getIcon(): string { - return $this->urlGenerator->imagePath(Application::APP_ID, 'app-dark.svg'); + return $this->urlGenerator->imagePath(Application::APP_ID, 'app.svg'); } }