浏览代码

Fix path argument in iOS excludeFromBackupKey (#473)

grylance 8 年前
父节点
当前提交
2aea0b58e9
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      ios.js

+ 1
- 1
ios.js 查看文件

43
  * @param  {string} url URL of the resource, only file URL is supported
43
  * @param  {string} url URL of the resource, only file URL is supported
44
  * @return {Promise}
44
  * @return {Promise}
45
  */
45
  */
46
-function excludeFromBackupKey(url:string) {
46
+function excludeFromBackupKey(path:string) {
47
   return RNFetchBlob.excludeFromBackupKey('file://' + path);
47
   return RNFetchBlob.excludeFromBackupKey('file://' + path);
48
 }
48
 }
49
 
49