Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 77d56ee6be |
@@ -34,6 +34,16 @@ class SyncEngine @Inject constructor(
|
|||||||
@ApplicationContext private val context: Context,
|
@ApplicationContext private val context: Context,
|
||||||
) {
|
) {
|
||||||
suspend fun sync(pair: SyncPair, provider: CloudProvider): SyncResult {
|
suspend fun sync(pair: SyncPair, provider: CloudProvider): SyncResult {
|
||||||
|
if (!pair.localPath.startsWith("content://")) {
|
||||||
|
val canonical = runCatching { File(pair.localPath).canonicalPath }.getOrElse { pair.localPath }
|
||||||
|
if (canonical == "/storage/emulated/0") {
|
||||||
|
val msg = "Local folder is the storage root — Android blocks writes here. Edit the pair and select a subfolder."
|
||||||
|
syncPairDao.updateSyncResult(pair.id, Instant.now(), SyncStatus.FAILED, 0)
|
||||||
|
logEvent(pair.id, SyncEventType.SYNC_FAILED, null, msg, 0)
|
||||||
|
return SyncResult(failedFiles = 1, error = Exception(msg))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
syncPairDao.updateStatus(pair.id, SyncStatus.SYNCING)
|
syncPairDao.updateStatus(pair.id, SyncStatus.SYNCING)
|
||||||
logEvent(pair.id, SyncEventType.SYNC_STARTED, null, null, 0)
|
logEvent(pair.id, SyncEventType.SYNC_STARTED, null, null, 0)
|
||||||
|
|
||||||
|
|||||||
@@ -263,13 +263,23 @@ fun LocalBrowserDialog(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ── Select button ────────────────────────────────────────────
|
// ── Select button ────────────────────────────────────────────
|
||||||
|
val isStorageRoot = currentPath.absolutePath == STORAGE_ROOT.absolutePath
|
||||||
Surface(tonalElevation = 4.dp, modifier = Modifier.fillMaxWidth()) {
|
Surface(tonalElevation = 4.dp, modifier = Modifier.fillMaxWidth()) {
|
||||||
Column {
|
Column {
|
||||||
|
if (isStorageRoot) {
|
||||||
|
Text(
|
||||||
|
"Android blocks writes to the storage root — please open a subfolder first",
|
||||||
|
style = MaterialTheme.typography.bodySmall,
|
||||||
|
color = MaterialTheme.colorScheme.error,
|
||||||
|
modifier = Modifier.padding(horizontal = 20.dp, vertical = 8.dp),
|
||||||
|
)
|
||||||
|
}
|
||||||
Button(
|
Button(
|
||||||
onClick = { onSelect(currentPath.absolutePath) },
|
onClick = { onSelect(currentPath.absolutePath) },
|
||||||
|
enabled = !isStorageRoot,
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.padding(start = 16.dp, top = 12.dp, end = 16.dp, bottom = 12.dp)
|
.padding(start = 16.dp, top = 4.dp, end = 16.dp, bottom = 12.dp)
|
||||||
.height(52.dp),
|
.height(52.dp),
|
||||||
shape = RoundedCornerShape(14.dp),
|
shape = RoundedCornerShape(14.dp),
|
||||||
) {
|
) {
|
||||||
|
|||||||
+2
-2
@@ -1,2 +1,2 @@
|
|||||||
VERSION_NAME=1.0.52
|
VERSION_NAME=1.0.53
|
||||||
VERSION_CODE=53
|
VERSION_CODE=54
|
||||||
|
|||||||
Reference in New Issue
Block a user