diff options
author | Ashm Walia <40498934+ashmgarv@users.noreply.github.com> | 2020-11-02 10:19:44 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-02 13:19:44 -0500 |
commit | aacb9237466c42b2e26f52a6588e6307c137db6e (patch) | |
tree | 7086eaf2b96e1bc57121f4cc1230523102b3559e /src/components/taggs | |
parent | 24c269c9d52ec7cf2cd383a8d7c3aee43ed475c1 (diff) |
[BUG FIX] -> 1 : Bottom of moments screen cut off 2 : Social media data double check [FRONTEND] (#84)
* BUG FIX -> 1 : Bottom of moments screen cut off 2 : Check for existence of accountData before displaying the same
* small change
* added more exception checking
* FIX package error
Co-authored-by: Ivan Chen <ivan@thetaggid.com>
Diffstat (limited to 'src/components/taggs')
-rw-r--r-- | src/components/taggs/TaggPost.tsx | 2 | ||||
-rw-r--r-- | src/components/taggs/TwitterTaggPost.tsx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/components/taggs/TaggPost.tsx b/src/components/taggs/TaggPost.tsx index 071dbfc4..6ad9158b 100644 --- a/src/components/taggs/TaggPost.tsx +++ b/src/components/taggs/TaggPost.tsx @@ -14,7 +14,7 @@ const TaggPost: React.FC<TaggPostProps> = ({post}) => { // Post with image and footer that shows caption return ( <View style={styles.photoContainer}> - {post.media_url.length === 1 && post.media_url[0] !== null ? ( + {post.media_url?.length === 1 && post.media_url[0] !== null ? ( <Image style={styles.imageWithMargin} source={{uri: post.media_url[0]}} diff --git a/src/components/taggs/TwitterTaggPost.tsx b/src/components/taggs/TwitterTaggPost.tsx index d0d066c6..e2dca115 100644 --- a/src/components/taggs/TwitterTaggPost.tsx +++ b/src/components/taggs/TwitterTaggPost.tsx @@ -56,7 +56,7 @@ const TwitterTaggPost: React.FC<TwitterTaggPostProps> = ({ <React.Fragment /> )} {/* Second part of content is an image or empty */} - {post.media_url.length !== 0 ? ( + {post.media_url?.length !== 0 ? ( <View style={styles.imageContainer}> {post.media_url.length === 1 && post.media_url[0] !== null ? ( <Image style={styles.image} source={{uri: post.media_url[0]}} /> @@ -111,7 +111,7 @@ const TwitterTaggPost: React.FC<TwitterTaggPostProps> = ({ style={styles.replyShowThisThread} onPress={() => { if (post.in_reply_to?.permalink) { - Linking.openURL(post.in_reply_to.permalink); + Linking.openURL(post.in_reply_to?.permalink || ''); } }}> Show this thread |