forked from cory/tildefriends
ssb: Suppress noisy output when running command-line actions with output intended to be parsed.
This commit is contained in:
@ -417,9 +417,8 @@ class TfElement extends LitElement {
|
||||
ON messages.author = following.value
|
||||
GROUP BY messages.author
|
||||
`,
|
||||
[
|
||||
JSON.stringify(Object.keys(users)),
|
||||
]);
|
||||
[JSON.stringify(Object.keys(users))]
|
||||
);
|
||||
for (let row of info) {
|
||||
users[row.author].seq = row.max_seq;
|
||||
users[row.author].ts = row.max_ts;
|
||||
@ -459,7 +458,11 @@ class TfElement extends LitElement {
|
||||
);
|
||||
start_time = new Date();
|
||||
users = await this.fetch_user_info(users);
|
||||
console.log('user info took', (new Date() - start_time) / 1000.0, 'seconds');
|
||||
console.log(
|
||||
'user info took',
|
||||
(new Date() - start_time) / 1000.0,
|
||||
'seconds'
|
||||
);
|
||||
this.users = users;
|
||||
console.log(
|
||||
`load finished ${whoami} => ${this.whoami} in ${(new Date() - start_time) / 1000}`
|
||||
@ -593,7 +596,8 @@ class TfElement extends LitElement {
|
||||
style="position: static; top: 0; z-index: 10"
|
||||
>
|
||||
<button
|
||||
class=${'w3-bar-item w3-button w3-circle w3-ripple' + (this.connections?.some(x => x.flags.one_shot) ? ' w3-spin' : '')}
|
||||
class=${'w3-bar-item w3-button w3-circle w3-ripple' +
|
||||
(this.connections?.some((x) => x.flags.one_shot) ? ' w3-spin' : '')}
|
||||
style="width: 1.5em; height: 1.5em; padding: 8px"
|
||||
@click=${this.refresh}
|
||||
>
|
||||
|
Reference in New Issue
Block a user