fixed filename saving error

This commit is contained in:
Fedor Katurov 2019-10-08 14:12:45 +07:00
parent 3ace7b157a
commit f664eb53e7
2 changed files with 2 additions and 2 deletions

View file

@ -415,7 +415,7 @@ function* cropAShotSaga(params) {
yield call(getCropData, params);
const canvas = document.getElementById('renderer') as HTMLCanvasElement;
downloadCanvas(canvas, (title || address));
downloadCanvas(canvas, (title || address).replace('.', ''));
return yield put(hideRenderer());
}