Skip to content
Snippets Groups Projects
Commit 860a77d4 authored by ThibG's avatar ThibG Committed by Eugen Rochko
Browse files

Avoid storing audio and video file data in memory (#11974)

parent 05ad7d60
No related branches found
No related tags found
No related merge requests found
......@@ -107,7 +107,10 @@ function appendMedia(state, media, file) {
const prevSize = state.get('media_attachments').size;
return state.withMutations(map => {
map.update('media_attachments', list => list.push(media.set('file', file)));
if (media.get('type') === 'image') {
media = media.set('file', file);
}
map.update('media_attachments', list => list.push(media));
map.set('is_uploading', false);
map.set('resetFileKey', Math.floor((Math.random() * 0x10000)));
map.set('idempotencyKey', uuid());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment