diff --git a/fs.js b/fs.js index dfcaadbc8..359774dab 100644 --- a/fs.js +++ b/fs.js @@ -243,7 +243,7 @@ function appendFile(path: string, data: string | Array, encoding?: strin return Promise.reject(addCode('EINVAL'), new TypeError(`"data" must be a String when encoding is "utf8" or "base64", but it is "${typeof data}"`)); } else - return ReactNativeBlobUtil.writeFile(path, encoding, data, true); + return ReactNativeBlobUtil.writeFile(path, encoding, data, false, true); } }