Merge branch 'hotfix/1.7.1' into develop

This commit is contained in:
Julian Raufelder 2022-03-04 16:32:53 +01:00
commit f38416070f
No known key found for this signature in database
GPG Key ID: 17EE71F6634E381D
4 changed files with 4 additions and 20 deletions

View File

@ -1,7 +1,6 @@
package org.cryptomator.data.cloud.onedrive
import android.content.Context
import android.net.Uri
import com.microsoft.graph.http.GraphServiceException
import com.microsoft.graph.models.DriveItem
import com.microsoft.graph.models.DriveItemCreateUploadSessionParameterSet
@ -86,7 +85,7 @@ internal class OnedriveImpl(cloud: OnedriveCloud, context: Context, graphService
private fun childByName(parentId: String, parentDriveId: String, name: String): DriveItem? {
return try {
drive(parentDriveId).items(parentId).itemWithPath(Uri.encode(name)).buildRequest().get()
drive(parentDriveId).items(parentId).itemWithPath(name).buildRequest().get()
} catch (e: GraphServiceException) {
if (isNotFoundError(e)) {
null

View File

@ -1,6 +1 @@
- Unterstützung für mehrere OneDrive-Konten hinzugefügt
- 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
- Viele Übersetzungen hinzugefügt
- Verbesserte Suchfunktion, nun wird eine "enthält"-Suche anstelle von "beginnt mit" verwendet
- Absturz auf einigen Geräten während des Entsperrens aufgrund einer Keystore-Ausnahme behoben
- Problem beim Löschen einer Cloud behoben
- Problem behoben, bei dem ein "Tresor nicht gefunden"-Dialog beim Entsperren mit OneDrive angezeigt wird, wenn er ein Leerzeichen im Namen enthält

View File

@ -1,6 +1 @@
- Added support for multiple OneDrive accounts
- Added access to vaults located in "Shared with Me", "My Computer" and "My Drive" of Google Drive using shortcuts
- Added a lot of translations
- Improved search functionality, now a "contains" search is used instead of "starts with"
- Fixed crash on some devices during unlock due to keystore exception
- Fixed problem during deletion of a cloud
- Fixed a problem where a "Vault not found" dialog is shown during unlock with OneDrive cloud if the vault contains a blank character

View File

@ -1,8 +1,3 @@
<ul>
<li>Added support for multiple OneDrive accounts</li>
<li>Added access to vaults located in "Shared with Me", "My Computer" and "My Drive" of Google Drive using shortcuts</li>
<li>Added a lot of translations</li>
<li>Improved search functionality, now a "contains" search is used instead of "starts with"</li>
<li>Fixed crash on some devices during unlock due to keystore exception</li>
<li>Fixed problem during deletion of a cloud</li>
<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>
</ul>