Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Verbruggen <erik@verbruggen.consulting>2022-02-10 18:13:34 +0300
committerHannah von Reth <vonreth@kde.org>2022-02-11 17:47:27 +0300
commit9e7bd9be8312672c72251027db4e63df6fe6f550 (patch)
tree0d1dcb9f1355d60e37bdbaf677fcd3397f3f9399 /changelog
parent36a07868eab50c67a4e64a054736b32222fbe278 (diff)
macOS: Fix path comparison in launch-on-startup code
When checking if the client is auto-started, the list of all login-items is retrieved, and each item is compared to the path of the .app bundle. This comparison needs to be done ignoring the case, as most macOS file systems are case-insensitive. https://github.com/owncloud/client/issues/9387
Diffstat (limited to 'changelog')
-rw-r--r--changelog/unreleased/93877
1 files changed, 7 insertions, 0 deletions
diff --git a/changelog/unreleased/9387 b/changelog/unreleased/9387
new file mode 100644
index 000000000..86f511646
--- /dev/null
+++ b/changelog/unreleased/9387
@@ -0,0 +1,7 @@
+Bugfix: Fix toggling launch-on-login for macOS
+
+This would fail when upgrading the application, and the upgraded version
+has one or more letters in the name changed from/to upper-case.
+
+https://github.com/owncloud/client/issues/9387
+https://github.com/owncloud/client/pull/9433