diff options
author | Ivan Chen <ivan@thetaggid.com> | 2021-02-06 13:36:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-06 13:36:44 -0500 |
commit | 13b844de3a9fd4e9492cbad123b4892a7b0c4fba (patch) | |
tree | 233e206f495b37df04643e4081098eb4968eac4c /src/components/notifications/Notification.tsx | |
parent | a77fc863914e473cbc6fac957111660db570a073 (diff) | |
parent | d190ce42efeae785e159199ccce7c67c53a91db4 (diff) |
Merge pull request #223 from ashmgarv/hotfix-try-fix-caching
[HOTFIX] Try fix cachng issue with ios on Notifications screen
Diffstat (limited to 'src/components/notifications/Notification.tsx')
-rw-r--r-- | src/components/notifications/Notification.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/notifications/Notification.tsx b/src/components/notifications/Notification.tsx index c2c6c4e4..ea121eb1 100644 --- a/src/components/notifications/Notification.tsx +++ b/src/components/notifications/Notification.tsx @@ -209,7 +209,7 @@ const Notification: React.FC<NotificationProps> = (props) => { style={styles.avatar} source={ avatar - ? {uri: avatar} + ? {uri: avatar, cache: 'reload'} : require('../../assets/images/avatar-placeholder.png') } /> |