Merge branch 'hotfix/1.7.1' into develop
This commit is contained in:
commit
f38416070f
@ -1,7 +1,6 @@
|
|||||||
package org.cryptomator.data.cloud.onedrive
|
package org.cryptomator.data.cloud.onedrive
|
||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.net.Uri
|
|
||||||
import com.microsoft.graph.http.GraphServiceException
|
import com.microsoft.graph.http.GraphServiceException
|
||||||
import com.microsoft.graph.models.DriveItem
|
import com.microsoft.graph.models.DriveItem
|
||||||
import com.microsoft.graph.models.DriveItemCreateUploadSessionParameterSet
|
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? {
|
private fun childByName(parentId: String, parentDriveId: String, name: String): DriveItem? {
|
||||||
return try {
|
return try {
|
||||||
drive(parentDriveId).items(parentId).itemWithPath(Uri.encode(name)).buildRequest().get()
|
drive(parentDriveId).items(parentId).itemWithPath(name).buildRequest().get()
|
||||||
} catch (e: GraphServiceException) {
|
} catch (e: GraphServiceException) {
|
||||||
if (isNotFoundError(e)) {
|
if (isNotFoundError(e)) {
|
||||||
null
|
null
|
||||||
|
@ -1,6 +1 @@
|
|||||||
- Unterstützung für mehrere OneDrive-Konten hinzugefügt
|
- Problem behoben, bei dem ein "Tresor nicht gefunden"-Dialog beim Entsperren mit OneDrive angezeigt wird, wenn er ein Leerzeichen im Namen enthält
|
||||||
- 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
|
|
@ -1,6 +1 @@
|
|||||||
- Added support for multiple OneDrive accounts
|
- Fixed a problem where a "Vault not found" dialog is shown during unlock with OneDrive cloud if the vault contains a blank character
|
||||||
- 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
|
|
@ -1,8 +1,3 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<li>Added support for multiple OneDrive accounts</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>
|
||||||
<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>
|
|
||||||
</ul>
|
</ul>
|
Loading…
x
Reference in New Issue
Block a user