fetch icon indicating copy to clipboard operation
fetch copied to clipboard

Cannot getReader of ReadableStream

Open robinsadeghpour opened this issue 3 months ago • 0 comments

Hey,

I cannot get the reader from the readableStream I get following Error: Error: [TypeError: This stream has already been locked for exclusive reading by another reader]

I also have added the auto import for the polyfills to the root _layout.tsx as I use filebased routing. import 'react-native-polyfill-globals/auto';

const res = await fetch("https://www.lotti.ai/api/lotti", {
        method: "POST",
        headers: {
          "Content-Type": "application/json",
          Connection: "keep-alive",
        },
        mode: "cors",
        body: JSON.stringify(message),
        "reactNative": { textStreaming: true }
      })

      const reader = res.body?.getReader();
image

I should also mention that the type for reactNative: {textStreaming: true} seems to not be detected correctly: image

robinsadeghpour avatar Mar 25 '24 13:03 robinsadeghpour