Browse Source

react-native-example: fix chunked reading

cc @kvz @arturi
Ifedapo Olarewaju 6 years ago
parent
commit
854654b135
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/react-native-expo/tusFileReader.js

+ 1 - 1
examples/react-native-expo/tusFileReader.js

@@ -18,7 +18,7 @@ class TusFileReader {
     const options = {
       encoding: Expo.FileSystem.EncodingTypes.Base64,
       length: end - start,
-      postion: start
+      position: start
     }
     Expo.FileSystem.readAsStringAsync(this.file.uri, options).then((data) => {
       cb(null, base64.toByteArray(data))