We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 715a91b commit 0db90a5Copy full SHA for 0db90a5
data/src/main/java/org/cryptomator/data/repository/HubRepositoryImpl.java
@@ -58,6 +58,7 @@ private Interceptor httpLoggingInterceptor(Context context) {
58
public String getVaultKeyJwe(UnverifiedHubVaultConfig unverifiedHubVaultConfig, String accessToken) throws BackendException {
59
var request = new Request.Builder().get() //
60
.header("Authorization", "Bearer " + accessToken) //
61
+ .header("deviceId", getHubDeviceCryptor().getDeviceId()) //
62
.url(unverifiedHubVaultConfig.getApiBaseUrl() + "vaults/" + unverifiedHubVaultConfig.vaultId() + "/access-token") //
63
.build();
64
try (var response = getHttpClient().newCall(request).execute()) {
0 commit comments