Skip to content

Commit

Permalink
Update data.js
Browse files Browse the repository at this point in the history
  • Loading branch information
LastSymphony12 authored Nov 12, 2024
1 parent 81bf2c0 commit 412f362
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/posts/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@ function modifyPost(post, fields) {
post.editedISO = post.edited !== 0 ? utils.toISOString(post.edited) : '';
}
// Mark post as "English" if decided by translator service or if it has no info
post.isEnglish = post.isEnglish == "true" || post.isEnglish === undefined;
post.isEnglish = post.isEnglish === 'true' || post.isEnglish === undefined;
}
}

0 comments on commit 412f362

Please sign in to comment.