show provided display name

This commit is contained in:
Sebastian Stenzel 2021-06-07 16:24:42 +02:00
parent 48ad74715e
commit 72e2f64a68
No known key found for this signature in database
GPG Key ID: 667B866EA8240A09
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@
<!-- cryptomator dependencies -->
<cryptomator.cryptofs.version>2.1.0-beta5</cryptomator.cryptofs.version>
<cryptomator.integrations.version>1.0.0-beta2</cryptomator.integrations.version>
<cryptomator.integrations.version>1.0.0-rc1</cryptomator.integrations.version>
<cryptomator.integrations.win.version>1.0.0-beta2</cryptomator.integrations.win.version>
<cryptomator.integrations.mac.version>1.0.0-beta2</cryptomator.integrations.mac.version>
<cryptomator.integrations.linux.version>1.0.0-beta1</cryptomator.integrations.linux.version>

View File

@ -191,7 +191,7 @@ public class GeneralPreferencesController implements FxController {
if (provider == null) {
return null;
} else {
return provider.getClass().getSimpleName(); // TODO: change to provider.getDisplayName();
return provider.displayName();
}
}