Skip to content

Commit

Permalink
Fixed null/str issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon-Rozek committed Jan 5, 2023
1 parent 8aa5ac3 commit 0ef524a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions layouts/_default/item.json.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
"_syndication": {
"mastodon": {
"enabled": {{ .Params.mastodon_enabled | default "false" }},
"toot_id": {{ .Params.mastodon_toot_id | default "null" }},
"toot_id": {{ .Params.mastodon_toot_id | jsonify }},
"toot_text": "{{ .Params.mastodon_toot_text | default ""}}"
},
"medium": {
"enabled": {{ .Params.medium_enabled | default "false" }},
"post_id": {{ .Params.medium_post_id | default "null" }}
"post_id": {{ .Params.medium_post_id | jsonify }}
}
}
}

0 comments on commit 0ef524a

Please sign in to comment.