You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The application is requesting files to be received ArrayBuffer format, and manually converting to Blobs.
This results in name and type information being stripped out of the original Blob formatted data, and Chrome displays raw data for each received file instead of rendering each correctly.
(Firefox doesn't have this issue as it appears to be smart enough to detect the type of raw data)
This could be fixed by changing the serialization of the file DataConnection to none and modifying the receiving code to simply handle received blobs.
The text was updated successfully, but these errors were encountered:
The application is requesting files to be received ArrayBuffer format, and manually converting to Blobs.
This results in
name
andtype
information being stripped out of the original Blob formatted data, and Chrome displays raw data for each received file instead of rendering each correctly.This could be fixed by changing the serialization of the
file
DataConnection tonone
and modifying the receiving code to simply handle received blobs.The text was updated successfully, but these errors were encountered: