modify method name

This commit is contained in:
MaysWind
2025-03-23 14:54:55 +08:00
parent 1d23558dff
commit fc2c5a8e6c
11 changed files with 18 additions and 18 deletions
@@ -1248,7 +1248,7 @@ const parsedFileAutoDetectedTimeFormat = computed<string | undefined>(() => {
}
}
const detectedFormats = KnownDateTimeFormat.detectMany(allDateTimes);
const detectedFormats = KnownDateTimeFormat.detectMulti(allDateTimes);
if (!detectedFormats || !detectedFormats.length || detectedFormats.length > 1) {
return undefined;
@@ -1279,7 +1279,7 @@ const parsedFileAutoDetectedTimezoneFormat = computed<string | undefined>(() =>
}
}
const detectedFormats = KnownDateTimezoneFormat.detectMany(allTimezones);
const detectedFormats = KnownDateTimezoneFormat.detectMulti(allTimezones);
if (!detectedFormats || !detectedFormats.length || detectedFormats.length > 1) {
return undefined;