Skip to content

Commit

Permalink
flip comment and playcount into the correct place
Browse files Browse the repository at this point in the history
  • Loading branch information
ArjanPronk authored Oct 26, 2020
1 parent fa405fc commit dd69c8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/TikTok.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1163,8 +1163,8 @@ export class TikTokScraper extends EventEmitter {
},
diggCount: videoData.stats.diggCount,
shareCount: videoData.stats.shareCount,
playCount: videoData.stats.commentCount,
commentCount: videoData.stats.playCount,
playCount: videoData.stats.playCount,
commentCount: videoData.stats.commentCount,
downloaded: false,
mentions: videoData.desc.match(/(@\w+)/g) || [],
hashtags: videoData.challenges
Expand Down

0 comments on commit dd69c8f

Please sign in to comment.