Add a thing to inspect reactions. #48

This commit is contained in:
2024-04-21 14:18:06 -04:00
parent bd14168627
commit 628716ec28
6 changed files with 64 additions and 4 deletions

View File

@ -234,7 +234,9 @@ class TfElement extends LitElement {
by_count.push({count: v.of, id: id});
}
console.log(by_count.sort((x, y) => y.count - x.count).slice(0, 20));
let start_time = new Date();
users = await this.fetch_about(Object.keys(following).sort(), users);
console.log('about took', (new Date() - start_time) / 1000.0, 'seconds for', Object.keys(users).length, 'users');
this.following = Object.keys(following);
this.users = users;
await tags;