Jobeso / react-native-story-share

Share your images to instagram and snapchat stories with react native.
107 stars 54 forks source link

Sharing a .jpg base64 file on Instagram results in a black story #58

Open loiclouvet opened 3 years ago

loiclouvet commented 3 years ago

Hello :)

From RNStoryShareModule.java :

private String generateFileName(){
    Random r = new Random();
    int hash = r.nextInt(999999);

    return "image-" + hash + ".png";
  }

It seems, we only generate .png files even if we are trying to share a base64 .jpg file. It results in a black screen on instagram story.

react-native-story-share: v0.6.0