diff --git a/CHANGELOG.md b/CHANGELOG.md index 49bfbf53..9f825709 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 8.3.1 + +* Fix: video owner must be room owner, not only admin. Otherwise they can't edit room parameters (including slow mode settings). + ## 8.3.0 ### New features diff --git a/server/lib/prosody/config/affiliations.ts b/server/lib/prosody/config/affiliations.ts index 5a7f249d..2c09945e 100644 --- a/server/lib/prosody/config/affiliations.ts +++ b/server/lib/prosody/config/affiliations.ts @@ -43,7 +43,7 @@ async function _addAffiliationByChannelId ( } else { const userJid = username + '@' + prosodyDomain if (!(userJid in r)) { // don't override if already owner! - r[userJid] = 'admin' + r[userJid] = 'owner' } } } catch (error) {