0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Added missing semicolon

no issue
This commit is contained in:
Daniel Lockyer 2020-03-26 16:45:33 +00:00
parent 8f935fe8ae
commit 23eb3e7c14

View file

@ -42,7 +42,7 @@ function ping(post) {
if (post.custom_excerpt) { if (post.custom_excerpt) {
description = post.custom_excerpt; description = post.custom_excerpt;
} else if (post.html) { } else if (post.html) {
description = `${post.html.replace(/<[^>]+>/g, '').split('.').slice(0, 3).join('.')}.` description = `${post.html.replace(/<[^>]+>/g, '').split('.').slice(0, 3).join('.')}.`;
} else { } else {
description = null; description = null;
} }