ソースを参照

Fix path argument in iOS excludeFromBackupKey (#473)

grylance 6 年 前
コミット
2aea0b58e9
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      ios.js

+ 1
- 1
ios.js ファイルの表示

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