Experimenting with ordering. Handful of small fixes.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3989 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
2022-09-25 12:33:54 +00:00
parent 828f61c4e9
commit c0ecdaae12
7 changed files with 134 additions and 74 deletions

View File

@@ -120,7 +120,7 @@ class TfTabNewsElement extends LitElement {
}
let counts = {};
for (let message of this.unread) {
let type = 'unknown';
let type = 'private';
try {
type = JSON.parse(message.content).type || type;
} catch {