Console autoupdate fix #4352

This commit is contained in:
rusefillc 2022-07-17 03:28:51 -04:00
parent b2fcb56e93
commit 9420cd5067
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ public class DfuUpload {
mResultView.post(() -> mResultView.append("Downloaded! " + "\n"));
uncompressFile(localFullFile, localFolder, localDfuImageFileName, mResultView);
} catch (IOException | KeyManagementException | NoSuchAlgorithmException e) {
} catch (IOException e) {
mResultView.post(() -> mResultView.append("Error downloading " + e + "\n"));
}
}