From 44626b264a759c42a1062131f4edad06ecc0d75a Mon Sep 17 00:00:00 2001 From: grylance Date: Wed, 9 Aug 2017 15:04:20 +0100 Subject: [PATCH] Fix path argument in iOS excludeFromBackupKey --- ios.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios.js b/ios.js index 566b424e2..340ef04cf 100644 --- a/ios.js +++ b/ios.js @@ -43,7 +43,7 @@ function openDocument(path:string, scheme:string) { * @param {string} url URL of the resource, only file URL is supported * @return {Promise} */ -function excludeFromBackupKey(url:string) { +function excludeFromBackupKey(path:string) { return RNFetchBlob.excludeFromBackupKey('file://' + path); }