aboutsummaryrefslogtreecommitdiff
path: root/src/services/CommonService.ts
diff options
context:
space:
mode:
authorIvan Chen <ivan@thetaggid.com>2021-02-03 16:41:04 -0500
committerGitHub <noreply@github.com>2021-02-03 16:41:04 -0500
commitc3cd8f95c6534fb5eb78af299ef424c50aefd85a (patch)
tree0426c0429f1e736a5cb3760d3cab917b024951ff /src/services/CommonService.ts
parent54027f2b5b763550fd11d1df6c5b979a7528170d (diff)
parentc75ed458a0ce5cacd522b8ba0ec8979b27f9aa65 (diff)
Merge pull request #216 from IvanIFChen/tma609-post-moment-notification-item
[TMA-609] Post Moment Notification Item
Diffstat (limited to 'src/services/CommonService.ts')
-rw-r--r--src/services/CommonService.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/services/CommonService.ts b/src/services/CommonService.ts
index 4f9fb47a..dfbbf70e 100644
--- a/src/services/CommonService.ts
+++ b/src/services/CommonService.ts
@@ -6,7 +6,7 @@ export const loadImageFromURL = async (url: string) => {
return undefined;
}
const response = await RNFetchBlob.config({
- fileCache: true,
+ fileCache: false,
appendExt: 'jpg',
}).fetch('GET', url);
const status = response.info().status;