Removes unnecessary log

This commit is contained in:
Vitor Pamplona 2024-09-26 14:42:40 -04:00
parent 56878900b0
commit ff9f25ccdb

View File

@ -1094,9 +1094,7 @@ object LocalCache {
if (version.event?.id() == event.id()) return if (version.event?.id() == event.id()) return
// makes sure the OTS has a valid certificate // makes sure the OTS has a valid certificate
val verif = event.cacheVerify() if (event.cacheVerify() is VerificationState.Error) return // no valid OTS
Log.d("AABBCC", "" + verif)
if (verif is VerificationState.Error) return // no valid OTS
if (version.event == null) { if (version.event == null) {
version.loadEvent(event, author, emptyList()) version.loadEvent(event, author, emptyList())