aboutsummaryrefslogtreecommitdiff
path: root/src/services/CommonService.ts
diff options
context:
space:
mode:
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;