diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/components/ZoomableContentView.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/components/ZoomableContentView.kt index 1b79f32b3..888e81e29 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/components/ZoomableContentView.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/components/ZoomableContentView.kt @@ -22,7 +22,6 @@ package com.vitorpamplona.amethyst.ui.components import android.content.Context import android.content.Intent -import android.util.Log import androidx.compose.animation.AnimatedVisibility import androidx.compose.animation.AnimatedVisibilityScope import androidx.compose.animation.fadeIn @@ -809,9 +808,6 @@ private fun verifyHash(content: MediaUrlContent): Boolean? { Amethyst.instance.diskCache.openSnapshot(content.url)?.use { snapshot -> val hash = sha256(snapshot.data.toFile().readBytes()).toHexKey() - - Log.d("Image Hash Verification", "$hash == ${content.hash}") - return hash == content.hash }