Skip to content

Commit 20b69c0

Browse files
committedFeb 23, 2024·
Tidying up
1 parent 6ad4ad8 commit 20b69c0

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed
 

‎datamodel.js

-4
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,7 @@ function parseInstagram (header, data) {
9393
data.forEach(function (row) {
9494
let dt = new Date(row["data"]["taken_at"]*1000);
9595

96-
console.log(row['data']);
9796
const caption = (row['data']["caption"] != null) ? escapeHTML(row['data']["caption"]["text"]):"";
98-
99-
//const caption = (row['data']["caption"]["text"] != null) ? escapeHTML(row['data']["caption"]["text"]):"";
100-
console.log(`"${caption}"`);
10197
let num_comments = -1;
10298
if (row['data']['comment_counts']) {
10399
num_comments = row['data']['comment_counts']

0 commit comments

Comments
 (0)
Please sign in to comment.