diff --git a/damus.xcodeproj/project.pbxproj b/damus.xcodeproj/project.pbxproj index 6929a8ab..e51eb7ea 100644 --- a/damus.xcodeproj/project.pbxproj +++ b/damus.xcodeproj/project.pbxproj @@ -1931,7 +1931,7 @@ CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = damus/damus.entitlements; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 2; DEVELOPMENT_ASSET_PATHS = "\"damus/Preview Content\""; DEVELOPMENT_TEAM = XK7H4JAB3D; ENABLE_PREVIEWS = YES; @@ -1975,7 +1975,7 @@ CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = damus/damus.entitlements; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 2; DEVELOPMENT_ASSET_PATHS = "\"damus/Preview Content\""; DEVELOPMENT_TEAM = XK7H4JAB3D; ENABLE_PREVIEWS = YES; diff --git a/damus/Views/Events/EmbeddedEventView.swift b/damus/Views/Events/EmbeddedEventView.swift index 33921a34..52fd13fd 100644 --- a/damus/Views/Events/EmbeddedEventView.swift +++ b/damus/Views/Events/EmbeddedEventView.swift @@ -30,6 +30,10 @@ struct EmbeddedEventView: View { .minimumScaleFactor(0.75) .lineLimit(1) + if event_is_reply(event, privkey: damus_state.keypair.privkey) { + ReplyDescription(event: event, profiles: damus_state.profiles) + } + EventBody(damus_state: damus_state, event: event, size: .small, options: [.truncate_content]) } } diff --git a/damus/Views/Events/SelectedEventView.swift b/damus/Views/Events/SelectedEventView.swift index 9f0702dc..d475aaeb 100644 --- a/damus/Views/Events/SelectedEventView.swift +++ b/damus/Views/Events/SelectedEventView.swift @@ -42,6 +42,10 @@ struct SelectedEventView: View { .minimumScaleFactor(0.75) .lineLimit(1) + if event_is_reply(event, privkey: damus.keypair.privkey) { + ReplyDescription(event: event, profiles: damus.profiles) + } + EventBody(damus_state: damus, event: event, size: size, options: []) if let mention = first_eref_mention(ev: event, privkey: damus.keypair.privkey) {