Skip to content

Commit 360af85

Browse files
committed
Merge branch 'hotfix/1.7.1'
2 parents d0a3a05 + 69a4c00 commit 360af85

File tree

5 files changed

+5
-21
lines changed

5 files changed

+5
-21
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ allprojects {
3939
ext {
4040
androidApplicationId = 'org.cryptomator'
4141
androidVersionCode = getVersionCode()
42-
androidVersionName = '1.7.0'
42+
androidVersionName = '1.7.1'
4343
}
4444
repositories {
4545
mavenCentral()

data/src/main/java/org/cryptomator/data/cloud/onedrive/OnedriveImpl.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package org.cryptomator.data.cloud.onedrive
22

33
import android.content.Context
4-
import android.net.Uri
54
import com.microsoft.graph.http.GraphServiceException
65
import com.microsoft.graph.models.DriveItem
76
import com.microsoft.graph.models.DriveItemCreateUploadSessionParameterSet
@@ -86,7 +85,7 @@ internal class OnedriveImpl(cloud: OnedriveCloud, context: Context, graphService
8685

8786
private fun childByName(parentId: String, parentDriveId: String, name: String): DriveItem? {
8887
return try {
89-
drive(parentDriveId).items(parentId).itemWithPath(Uri.encode(name)).buildRequest().get()
88+
drive(parentDriveId).items(parentId).itemWithPath(name).buildRequest().get()
9089
} catch (e: GraphServiceException) {
9190
if (isNotFoundError(e)) {
9291
null
Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1 @@
1-
- Unterstützung für mehrere OneDrive-Konten hinzugefügt
2-
- Zugriff auf Tresore, die sich in "Shared with Me", "My Computer" und "My Drive" von Google Drive befinden, wurde mit Hilfe von Shortcuts hinzugefügt
3-
- Viele Übersetzungen hinzugefügt
4-
- Verbesserte Suchfunktion, nun wird eine "enthält"-Suche anstelle von "beginnt mit" verwendet
5-
- Absturz auf einigen Geräten während des Entsperrens aufgrund einer Keystore-Ausnahme behoben
6-
- Problem beim Löschen einer Cloud behoben
1+
- Problem behoben, bei dem ein "Tresor nicht gefunden"-Dialog beim Entsperren mit OneDrive angezeigt wird, wenn er ein Leerzeichen im Namen enthält
Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1 @@
1-
- Added support for multiple OneDrive accounts
2-
- Added access to vaults located in "Shared with Me", "My Computer" and "My Drive" of Google Drive using shortcuts
3-
- Added a lot of translations
4-
- Improved search functionality, now a "contains" search is used instead of "starts with"
5-
- Fixed crash on some devices during unlock due to keystore exception
6-
- Fixed problem during deletion of a cloud
1+
- Fixed a problem where a "Vault not found" dialog is shown during unlock with OneDrive cloud if the vault contains a blank character

fastlane/release-notes.html

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
11
<ul>
2-
<li>Added support for multiple OneDrive accounts</li>
3-
<li>Added access to vaults located in "Shared with Me", "My Computer" and "My Drive" of Google Drive using shortcuts</li>
4-
<li>Added a lot of translations</li>
5-
<li>Improved search functionality, now a "contains" search is used instead of "starts with"</li>
6-
<li>Fixed crash on some devices during unlock due to keystore exception</li>
7-
<li>Fixed problem during deletion of a cloud</li>
2+
<li>Fixed a problem where a "Vault not found" dialog is shown during unlock with OneDrive cloud if the vault contains a blank character</li>
83
</ul>

0 commit comments

Comments
 (0)