File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 55- Fix error with choosing qlpack search path.
66- Add the AST Viewer to inspect the QL AST of a source file in a database. Currently, only available for C/C++ sources.
77- Fix pagination when there are no results.
8+ - Suppress database downloaded from URL message when action canceled.
89
910## 1.3.1 - 7 July 2020
1011
Original file line number Diff line number Diff line change @@ -56,9 +56,11 @@ export async function promptImportInternetDatabase(
5656 ) ;
5757 commands . executeCommand ( 'codeQLDatabases.focus' ) ;
5858 }
59- showAndLogInformationMessage (
60- 'Database downloaded and imported successfully.'
61- ) ;
59+ if ( item ) {
60+ showAndLogInformationMessage (
61+ 'Database downloaded and imported successfully.'
62+ ) ;
63+ }
6264 } catch ( e ) {
6365 showAndLogErrorMessage ( e . message ) ;
6466 }
You can’t perform that action at this time.
0 commit comments