diff --git a/src/view/com/util/post-embeds/index.tsx b/src/view/com/util/post-embeds/index.tsx
index 6271104959..32e92119de 100644
--- a/src/view/com/util/post-embeds/index.tsx
+++ b/src/view/com/util/post-embeds/index.tsx
@@ -57,9 +57,20 @@ export function PostEmbeds({
)
}
- // quote post
- // =
if (AppBskyEmbedRecord.isView(embed)) {
+ // custom feed embed (i.e. generator view)
+ // =
+ if (AppBskyFeedDefs.isGeneratorView(embed.record)) {
+ return
+ }
+
+ // list embed (e.g. mute lists; i.e. ListView)
+ if (AppBskyGraphDefs.isListView(embed.record)) {
+ return
+ }
+
+ // quote post
+ // =
return
}
@@ -119,23 +130,6 @@ export function PostEmbeds({
}
}
- // custom feed embed (i.e. generator view)
- // =
- if (
- AppBskyEmbedRecord.isView(embed) &&
- AppBskyFeedDefs.isGeneratorView(embed.record)
- ) {
- return
- }
-
- // list embed (e.g. mute lists; i.e. ListView)
- if (
- AppBskyEmbedRecord.isView(embed) &&
- AppBskyGraphDefs.isListView(embed.record)
- ) {
- return
- }
-
// external link embed
// =
if (AppBskyEmbedExternal.isView(embed)) {