diff --git a/build/page-tweets.js b/build/page-tweets.js
index 15b2b93..cd2c2fc 100644
--- a/build/page-tweets.js
+++ b/build/page-tweets.js
@@ -54,6 +54,10 @@ module.exports = exports = async function tweets (pages) {
       }
       const tweet = twitterBackup[id];
 
+      if (tweet.quoted_status_id_str && !twitterCache[tweet.quoted_status_id_str]) {
+        tweetsNeeded.push(tweet.quoted_status_id_str);
+      }
+
       if (tweet) {
         log('Pulled tweet from backup ' + id);
         twitterCache[id] = tweetparse(twitterBackup[id]);