[UWP App] Add download button in troubleshoot dialog (#638)

This commit is contained in:
Guillaume Jenkins
2018-02-08 14:52:59 -05:00
committed by Peli de Halleux
parent 35c712bc6d
commit ca7879b791
2 changed files with 2 additions and 2 deletions

View File

@ -349,7 +349,7 @@ namespace pxt.editor {
})
.catch(e => {
if (e.type === "devicenotfound" && d.reportDeviceNotFoundAsync) {
return d.reportDeviceNotFoundAsync("/device/windows-app/troubleshoot");
return d.reportDeviceNotFoundAsync("/device/windows-app/troubleshoot", resp);
} else {
return saveHexAsync()
}