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) {
description = post.custom_excerpt;
} 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 {
description = null;
}