about summary refs log tree commit diff
path: root/src/view/com/post/Post.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/com/post/Post.tsx')
-rw-r--r--src/view/com/post/Post.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx
index 4a1e67b63..22bdd27ab 100644
--- a/src/view/com/post/Post.tsx
+++ b/src/view/com/post/Post.tsx
@@ -102,7 +102,9 @@ export const Post = observer(function Post({uri}: {uri: string}) {
         <View style={styles.layoutContent}>
           <View style={styles.meta}>
             <Link style={styles.metaItem} href={authorHref} title={authorTitle}>
-              <Text style={[s.f16, s.bold]}>{item.author.displayName}</Text>
+              <Text style={[s.f16, s.bold]}>
+                {item.author.displayName || item.author.handle}
+              </Text>
             </Link>
             <Link style={styles.metaItem} href={authorHref} title={authorTitle}>
               <Text style={[s.f15, s.gray5]}>@{item.author.handle}</Text>