Skip to content

Commit

Permalink
Current version of Psi+ is 1.5.2057
Browse files Browse the repository at this point in the history
It is based on:
* psi: 9f94e0b6
* plugins: 347230b
* psimedia: 478567e
* resources: fc4cfc1
  • Loading branch information
tehnick committed Oct 8, 2024
1 parent 170e1da commit 05be9a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion themes/chatview/psi/bubble/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,9 @@
groupped[base].text += `<em>${event["reactions"][r].text}</em>`;
}

for (const [base, value] of Object.entries(groupped)) {
//for (const [base, value] of Object.entries(groupped)) {
for (const base in groupped) {
const value = groupped[base];
const nicks = value.nicks.sort().filter((x, i, a) => !i || x != a[i-1]);
const reaction = document.createElement("span");
reaction.innerHTML = `${nicks.length} ${value.text}`;
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.2056 (2024-10-07, c86b1387)
1.5.2057 (2024-10-08, 9f94e0b6)

0 comments on commit 05be9a6

Please sign in to comment.