mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-02-22 14:22:48 +01:00
Macaroon spelling bug fix
This commit is contained in:
parent
be71869994
commit
4c7ef72add
1 changed files with 2 additions and 3 deletions
|
@ -33,10 +33,9 @@ var setMacaroonPath = (clArgs, config) => {
|
|||
if(undefined !== clArgs.lndir) {
|
||||
macaroonPath = clArgs.lndir;
|
||||
} else {
|
||||
if(config.Authentication.macroonPath !== '') {
|
||||
if(undefined !== config.Authentication.macroonPath && config.Authentication.macroonPath !== '') {
|
||||
macaroonPath = config.Authentication.macroonPath;
|
||||
}
|
||||
if(config.Authentication.macaroonPath !== '') {
|
||||
} else if(undefined !== config.Authentication.macaroonPath && config.Authentication.macaroonPath !== '') {
|
||||
macaroonPath = config.Authentication.macaroonPath;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue