File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 7
7
- Ensure added databases have zipped source locations for databases added as archives or downloaded from the internet.
8
8
- Fix bug where it is not possible to add databases starting with ` db-* ` .
9
9
- Change styling of pagination section of the results page.
10
+ - Fix display of query text for stored quick queries.
10
11
11
12
## 1.3.0 - 22 June 2020
12
13
Original file line number Diff line number Diff line change @@ -417,7 +417,7 @@ export class QueryHistoryManager {
417
417
: singleItem . queryName + '.ql' ;
418
418
const params = new URLSearchParams ( {
419
419
isQuickEval : String ( ! ! singleItem . query . quickEvalPosition ) ,
420
- queryText : await this . getQueryText ( singleItem ) ,
420
+ queryText : encodeURIComponent ( await this . getQueryText ( singleItem ) ) ,
421
421
} ) ;
422
422
const uri = vscode . Uri . parse (
423
423
`codeql:${ singleItem . query . queryID } -${ queryName } ?${ params . toString ( ) } `
You can’t perform that action at this time.
0 commit comments