remove url reachability check for download url as it may give cors error
All checks were successful
Release to Staging / build_and_release (push) Successful in 44s
All checks were successful
Release to Staging / build_and_release (push) Successful in 44s
This commit is contained in:
parent
3ddb95fda2
commit
012e868ad3
@ -337,10 +337,7 @@ export const ModForm = ({ existingModData }: ModFormProps) => {
|
|||||||
} else {
|
} else {
|
||||||
for (let i = 0; i < formState.downloadUrls.length; i++) {
|
for (let i = 0; i < formState.downloadUrls.length; i++) {
|
||||||
const downloadUrl = formState.downloadUrls[i]
|
const downloadUrl = formState.downloadUrls[i]
|
||||||
if (
|
if (!isValidUrl(downloadUrl.url)) {
|
||||||
!isValidUrl(downloadUrl.url) ||
|
|
||||||
!(await isReachable(downloadUrl.url))
|
|
||||||
) {
|
|
||||||
if (!errors.downloadUrls)
|
if (!errors.downloadUrls)
|
||||||
errors.downloadUrls = Array(formState.downloadUrls.length)
|
errors.downloadUrls = Array(formState.downloadUrls.length)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user