Merge pull request #900 from patriceac/patch-31

Fix filename parsing issue
This commit is contained in:
cmdr2 2023-02-20 18:30:45 +05:30 committed by GitHub
commit bc14bdc010
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -375,7 +375,7 @@ function readUI() {
}
function getModelPath(filename, extensions)
{
if (filename === null) {
if (typeof filename !== "string") {
return
}