Compare commits

..

2 Commits

Author SHA1 Message Date
matty 4eea780cf7 Merge tag 'tags/v10.3.2'
v10.3.2

Minor changes and fixes:

* Fix #477: ended polls never disappear when archiving is disabled (and no more than 20 new messages).
2024-07-20 19:21:47 -04:00
John Livingston db1993f97e
Fix #477: ended polls never disappear when archiving is disabled (and no more than 20 new messages). 2024-07-18 10:24:54 +02:00
4 changed files with 30 additions and 3 deletions

View File

@ -1,5 +1,6 @@
# Changelog
<<<<<<< HEAD
## 11.0.0 (Not Released Yet)
### New features
@ -9,6 +10,13 @@
### Minor changes and fixes
* New translation: Albanian
=======
## 10.3.2
### Minor changes and fixes
* Fix #477: ended polls never disappear when archiving is disabled (and no more than 20 new messages).
>>>>>>> tags/v10.3.2
## 10.3.1

View File

@ -12,6 +12,8 @@ import './components/poll-form-view.js'
const { sizzle } = converse.env
const delayedTimeout = 2 // for delayed poll message, how long must the be considered as valid.
converse.plugins.add('livechat-converse-poll', {
dependencies: ['converse-muc', 'converse-disco'],
@ -97,6 +99,23 @@ converse.plugins.add('livechat-converse-poll', {
if (attrs.is_archived) {
return this.__super__.onMessage(attrs)
}
if (attrs.is_delayed) {
// When archiving is disabled, the "history" mechanism is still available:
// Last X (20 by default) messages will be kept, and sent to users.
// The only thing that differentiates such messages is that they are delayed.
// We can't just ignore all delayed messages, because if one day we enable SMACKS
// (to handle deconnections on poor network), there could be some legitimate delayed messages.
// So we will only ignore the poll if it was sent more than X minutes ago.
console.debug('Got a delayed poll message, checking if old or not')
const d = new Date()
d.setMinutes(d.getMinutes() - delayedTimeout)
if (attrs.time < d.toISOString()) {
console.debug(
`Poll message was delayed fore more than ${delayedTimeout} minutes (${attrs.time} < ${d.toISOString()}).`
)
return this.__super__.onMessage(attrs)
}
}
console.info('Got a poll message, setting it as the current_poll')
// this will be displayed by the livechat-converse-muc-poll custom element,

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "peertube-plugin-livechat",
"version": "10.3.1",
"version": "10.3.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "peertube-plugin-livechat",
"version": "10.3.1",
"version": "10.3.2",
"license": "AGPL-3.0",
"dependencies": {
"@xmpp/jid": "^0.13.1",

View File

@ -1,7 +1,7 @@
{
"name": "peertube-plugin-livechat",
"description": "NCTV fork of the peertube-plugin-livechat plugin, containing styling and other shit. This will be maintained with upstream.",
"version": "10.3.1",
"version": "10.3.2",
"license": "AGPL-3.0",
"author": {
"name": "Matty Boombalatty",