Skip to content

Commit 76c645c

Browse files
committed
fixed text error twitter bug
1 parent 17d14d1 commit 76c645c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datamodel.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function parseTwitter (header, data) {
1212
retweet["result"] = retweet["result"]["tweet"]
1313
const rt_text = "RT @" + row["data"]["result"]["core"]["user_results"]["result"]["legacy"]["screen_name"] +
1414
": " + row["data"]["result"]["legacy"]["full_text"]
15-
row["legacy"]["full_text"] = escapeHTML(rt_text);
15+
row['data']["legacy"]["full_text"] = escapeHTML(rt_text);
1616
}
1717

1818
const quote_tweet = row['data']["is_quote_status"];

0 commit comments

Comments
 (0)