From 7fd33b83a2cda5bb699d6ed0d70ac068b1b31f15 Mon Sep 17 00:00:00 2001 From: Victor Truong Date: Wed, 1 Jul 2020 01:08:18 -0700 Subject: [PATCH] Switch to single quotes --- src/features/post_reply.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/features/post_reply.js b/src/features/post_reply.js index e16aa8a..ecaac9c 100644 --- a/src/features/post_reply.js +++ b/src/features/post_reply.js @@ -112,13 +112,13 @@ export default app => { // Stop if the post is deleted if (post.deletedAt) { - await say(`:skull: This post has been deleted. Your reply will not be sent.`) + await say(':skull: This post has been deleted. Your reply will not be sent.') return } // Stop if the post is locked if (post.lockedDownAt) { - await say(`:lock: This post is currently locked. Your reply will not be sent.`) + await say(':lock: This post is currently locked. Your reply will not be sent.') return }