Bug 1498483 - saving current composition doesn't overwrite existing file. r=aceman

This commit is contained in:
Jorg K 2018-10-14 00:31:08 +02:00
Родитель 580dd5d8c8
Коммит 0decf7ace6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -845,7 +845,7 @@ function PromptForSaveLocation(aDoSaveAsText, aEditorType, aMIMEType, aDocumentU
return new Promise(resolve => {
fp.open(rv => {
dialogResult.filepickerClick = rv;
if (rv == nsIFilePicker.returnOK && fp.file) {
if (rv != nsIFilePicker.returnCancel && fp.file) { // Allow OK and replace.
// reset urlstring to new save location
dialogResult.resultingURIString = fileHandler.getURLSpecFromFile(fp.file);
dialogResult.resultingLocalFile = fp.file;