This repository was archived by the owner on Oct 1, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -60,14 +60,14 @@ export class VscodeSettings implements IVscodeSettings {
60
60
61
61
public get additionalUrls ( ) : string [ ] {
62
62
const value = this . getConfigValue < string | string [ ] > ( configKeys . ADDITIONAL_URLS ) ;
63
-
63
+
64
64
// Even though the schema says value must be a string array, version
65
65
// 0.4.9 and earlier also allowed a single comma delimeted string. We
66
66
// continue to unofficially support that format to avoid breaking
67
67
// existing settings, but we immediately write back the correctly
68
68
// formatted version.
69
69
const split = toStringArray ( value ) ;
70
- if ( typeof value === ' string' ) {
70
+ if ( typeof value === " string" ) {
71
71
this . updateAdditionalUrls ( split ) ;
72
72
}
73
73
Original file line number Diff line number Diff line change @@ -467,4 +467,4 @@ export function toStringArray(value: string | string[]): string[] {
467
467
}
468
468
469
469
return [ ] ;
470
- }
470
+ }
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ export function openLink(link) {
39
39
40
40
export function openSettings ( query ) {
41
41
return postHTTP ( "/api/opensettings" , {
42
- query
42
+ query,
43
43
} ) . then ( ( response ) => response . json ( ) ) ;
44
44
}
45
45
You can’t perform that action at this time.
0 commit comments