@@ -275,7 +275,7 @@ const { getFile } = useImport()
const isUrl = (str: string): boolean => {
try {
const url = new URL(str)
- return url.protocol === 'http:' || url.protocol === 'https:'
+ return url.protocol === 'http:' || url.protocol === 'https:' && !str.includes('https://ccrb.s3.cn-northwest-1.amazonaws.com.cn')
}
catch {
return false