Tiktok sort by view

Click the video tab on tiktok user page to sort video by views and click again to restore order!

< Feedback on Tiktok sort by view

Review: Good - script works

§
Posted: 2023-04-15

Here is the fix for it not working consistently.

Replace line 27:

const views = number * multiplier;

with:

const views = (multiplier === undefined) ? number : number * multiplier
§
Posted: 2023-10-24

Here is the fix for it not working consistently.

Replace line 27:

const views = number * multiplier;

with:

const views = (multiplier === undefined) ? number : number * multiplier

bro its work, thanks

Post reply

Sign in to post a reply.