Skip to content

Commit 05be9a6

Browse files
committed
Current version of Psi+ is 1.5.2057
It is based on: * psi: 9f94e0b6 * plugins: 347230b * psimedia: 478567e * resources: fc4cfc1
1 parent 170e1da commit 05be9a6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

themes/chatview/psi/bubble/index.html

+3-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,9 @@
238238
groupped[base].text += `<em>${event["reactions"][r].text}</em>`;
239239
}
240240

241-
for (const [base, value] of Object.entries(groupped)) {
241+
//for (const [base, value] of Object.entries(groupped)) {
242+
for (const base in groupped) {
243+
const value = groupped[base];
242244
const nicks = value.nicks.sort().filter((x, i, a) => !i || x != a[i-1]);
243245
const reaction = document.createElement("span");
244246
reaction.innerHTML = `${nicks.length} ${value.text}`;

version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.2056 (2024-10-07, c86b1387)
1+
1.5.2057 (2024-10-08, 9f94e0b6)

0 commit comments

Comments
 (0)