Skip to content

Commit

Permalink
Fix assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Oct 31, 2024
1 parent ff7ae0a commit 4347996
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion persist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ cron.schedule('0,10,20,30,40,50 * * * * *', async () => {

base.paths = {};

const config = YAML.stringify(base, (key, value) => {
let config = YAML.stringify(base, (key, value) => {
if (typeof value === 'boolean') {
return value === true ? 'yes' : 'no'
} else {
Expand Down

0 comments on commit 4347996

Please sign in to comment.