mirror of
https://github.com/hangeol-chang/obsidian-csv-allinone.git
synced 2026-07-22 05:37:25 +00:00
[FIX] explorer에서 대문자 확장자 검색 안되는거 수정
This commit is contained in:
parent
af9ee84365
commit
2985af3924
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@ export const getCSVFileStructure = async (app: App): Promise<Record<string, stri
|
|||
|
||||
// Vault 내의 모든 파일 순회
|
||||
files.forEach((file: TFile) => {
|
||||
if (file.extension === "CSV") {
|
||||
if (file.extension === "csv") {
|
||||
if(file.parent) {
|
||||
const folderPath = file.parent.path;
|
||||
if (!CSVStructure[folderPath])
|
||||
|
|
|
|||
Loading…
Reference in a new issue