From 3c17681f6a72eddcd9e11bd7c18e984d347f8605 Mon Sep 17 00:00:00 2001 From: Christopher Gurnee Date: Wed, 27 Oct 2021 14:14:59 -0400 Subject: [PATCH] Fix quoting bug --- src/pages/thread/Comment.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/thread/Comment.js b/src/pages/thread/Comment.js index 25d96f5..09d8522 100644 --- a/src/pages/thread/Comment.js +++ b/src/pages/thread/Comment.js @@ -19,7 +19,7 @@ const Comment = (props) => { innerHTML = '

[removed too quickly to be archived]

' } else if (props.created_utc < 1627776000) { // Aug 1 2021 const retrieved = props.hasOwnProperty('retrieved_utc') ? props.retrieved_utc : props.retrieved_on; - innerHTML = '

[removed within ${prettyTimeDiff(retrieved - props.created_utc)}]

' + innerHTML = `

[removed within ${prettyTimeDiff(retrieved - props.created_utc)}]

` } // After around Aug 1 2021, Pushshift began updating comments from Reddit after around // 24-48 hours, including removing(?) comments that were removed from Reddit. The presence