There was an error while loading. Please reload this page.
1 parent 6fd946d commit 588403bCopy full SHA for 588403b
1 file changed
app/src/main/java/com/owncloud/android/ui/adapter/OCFileListDelegate.kt
@@ -355,10 +355,15 @@ class OCFileListDelegate(
355
val icon = when {
356
isSyncing -> R.drawable.ic_synchronizing
357
hasConflict -> R.drawable.ic_synchronizing_error
358
- isDown || isFolderDown -> R.drawable.ic_synced
+ isDown || isFolderDown -> {
359
+ Log_OC.d("DOWN_INDICATOR", "isFolderDown : $isFolderDown")
360
+ Log_OC.d("DOWN_INDICATOR", "storage path: ${file.storagePath}")
361
+ R.drawable.ic_synced
362
+ }
363
else -> null
364
}
365
366
+
367
holder.localFileIndicator.run {
368
if (icon != null && showMetadata) {
369
setImageResource(icon)
0 commit comments