Prechádzať zdrojové kódy

react-native-example: fix chunked reading

cc @kvz @arturi
Ifedapo Olarewaju 6 rokov pred
rodič
commit
854654b135

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

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