From 251e5535d0f312b5559370e1077af575b8c554cd Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Tue, 12 Aug 2025 18:57:11 -0400 Subject: [PATCH] Removes hash logs --- .../amethyst/ui/components/ZoomableContentView.kt | 4 ---- 1 file changed, 4 deletions(-) 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 }