Make the uri.fsPath lowercase to handle .JSON, .Json, etc (#1282)

This commit is contained in:
Nathan 2020-01-13 16:16:43 -08:00 коммит произвёл GitHub
Родитель abf2bcfec3
Коммит 92691cd163
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -19,7 +19,7 @@ export async function importDocuments(actionContext: IActionContext, uris: vscod
}
let ignoredUris: vscode.Uri[] = []; //account for https://github.com/Microsoft/vscode/issues/59782
uris = uris.filter((uri) => {
if (uri.fsPath.endsWith('.json')) {
if (uri.fsPath.toLocaleLowerCase().endsWith('.json')) {
return true;
} else {
ignoredUris.push(uri);