Use blob URL for Tesseract to avoid CORS issues (#11964)
This commit is contained in:
parent
f31530b74d
commit
7baedcb61e
3 changed files with 17 additions and 6 deletions
|
@ -103,11 +103,11 @@ function clearAll(state) {
|
|||
});
|
||||
};
|
||||
|
||||
function appendMedia(state, media) {
|
||||
function appendMedia(state, media, file) {
|
||||
const prevSize = state.get('media_attachments').size;
|
||||
|
||||
return state.withMutations(map => {
|
||||
map.update('media_attachments', list => list.push(media));
|
||||
map.update('media_attachments', list => list.push(media.set('file', file)));
|
||||
map.set('is_uploading', false);
|
||||
map.set('resetFileKey', Math.floor((Math.random() * 0x10000)));
|
||||
map.set('idempotencyKey', uuid());
|
||||
|
@ -321,7 +321,7 @@ export default function compose(state = initialState, action) {
|
|||
case COMPOSE_UPLOAD_REQUEST:
|
||||
return state.set('is_uploading', true);
|
||||
case COMPOSE_UPLOAD_SUCCESS:
|
||||
return appendMedia(state, fromJS(action.media));
|
||||
return appendMedia(state, fromJS(action.media), action.file);
|
||||
case COMPOSE_UPLOAD_FAIL:
|
||||
return state.set('is_uploading', false);
|
||||
case COMPOSE_UPLOAD_UNDO:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue