Skip to content

Commit

Permalink
Update settings.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
shocknet-justin authored Sep 1, 2024
1 parent acc03bc commit 893c03c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/main/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const LoadMainSettingsFromEnv = (): MainSettings => {
wizard: process.env.WIZARD === 'true' || false,
defaultAppName: process.env.DEFAULT_APP_NAME || "wallet",
pushBackupsToNostr: process.env.PUSH_BACKUPS_TO_NOSTR === 'true' || false,
lnurlMetaText: process.env.LNURL_META_TEXT || "lnurl pay to Lightning.pub"
lnurlMetaText: process.env.LNURL_META_TEXT || "LNURL via Lightning.pub"
}
}

Expand Down Expand Up @@ -134,4 +134,4 @@ export const loadJwtSecret = (dataDir: string): string => {

export const getDataPath = (dataDir: string, dataPath: string) => {
return dataDir !== "" ? `${dataDir}/${dataPath}` : dataPath
}
}

0 comments on commit 893c03c

Please sign in to comment.