We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19f4721 commit afc9586Copy full SHA for afc9586
data/src/main/java/org/cryptomator/data/repository/HubRepositoryImpl.java
@@ -58,7 +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()) //
+ .header("Hub-Device-ID", getHubDeviceCryptor().getDeviceId()) //
62
.url(unverifiedHubVaultConfig.getApiBaseUrl() + "vaults/" + unverifiedHubVaultConfig.vaultId() + "/access-token") //
63
.build();
64
try (var response = getHttpClient().newCall(request).execute()) {
0 commit comments