mirror of
https://gitlab.com/jusax23/fmi.git
synced 2024-11-24 07:36:33 +01:00
fix links
This commit is contained in:
parent
0efb5021ce
commit
85d14deb7e
1 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ export default class fmi {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
this.#groups[group][name].set(value);
|
this.#groups[group][name].set(value);
|
||||||
return true
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
save(){
|
save(){
|
||||||
|
@ -97,7 +97,7 @@ export default class fmi {
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
const pathf = jpath(dir, path);
|
const pathf = jpath(dir, path);
|
||||||
if (!fs.existsSync(pathf) || !fs.lstatSync(pathf).isFile()) {
|
if (!fs.existsSync(pathf) || !fs.statSync(pathf).isFile()) {
|
||||||
rej("Coud not find File: " + pathf);
|
rej("Coud not find File: " + pathf);
|
||||||
} else {
|
} else {
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in a new issue