Skip to content

Commit

Permalink
Switch to single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
ifvictr committed Jul 1, 2020
1 parent 558ce70 commit 7fd33b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/features/post_reply.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 7fd33b8

Please sign in to comment.