diff --git a/damus/Util/EventCache.swift b/damus/Util/EventCache.swift index ad8493a4..3f6d5419 100644 --- a/damus/Util/EventCache.swift +++ b/damus/Util/EventCache.swift @@ -239,6 +239,11 @@ func should_translate(event: NostrEvent, our_keypair: Keypair, settings: UserSet guard settings.can_translate else { return false } + + // don't translate reposts, longform, etc + if event.kind != 1 { + return false; + } // Do not translate self-authored notes if logged in with a private key // as we can assume the user can understand their own notes.