From bdfd22c4831c712ff72d15335e5e9a446db5fde9 Mon Sep 17 00:00:00 2001 From: Ralph Plawetzki Date: Wed, 11 Feb 2026 06:07:01 +0100 Subject: [PATCH] Partially reverts https://github.com/cryptomator/cryptomator/commit/dd1af8cd783589e8c8b06e7c4881195e10a67815 Not needed anymore, see https://github.com/cryptomator/integrations-linux/pull/125#issuecomment-3876060158 --- src/main/java/org/cryptomator/common/settings/Settings.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/main/java/org/cryptomator/common/settings/Settings.java b/src/main/java/org/cryptomator/common/settings/Settings.java index a711e6536..efce23fef 100644 --- a/src/main/java/org/cryptomator/common/settings/Settings.java +++ b/src/main/java/org/cryptomator/common/settings/Settings.java @@ -152,11 +152,6 @@ public class Settings { @SuppressWarnings("deprecation") private void migrateLegacySettings(SettingsJson json) { - // migrate renamed keychainAccess - if(this.keychainProvider.getValueSafe().equals("org.cryptomator.linux.keychain.SecretServiceKeychainAccess")) { - this.keychainProvider.setValue("org.cryptomator.linux.keychain.GnomeKeyringKeychainAccess"); - } - // implicit migration of 1.6.x legacy setting "preferredVolumeImpl": if (this.mountService.get() == null && json.preferredVolumeImpl != null) { this.mountService.set(switch (json.preferredVolumeImpl) {