diff --git a/CHANGELOG.md b/CHANGELOG.md index d1beb1de..ced0b24f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ ### Changes * Removed compatibility with Peertube previous to 3.2.0. +* Restoring default values for checkboxes in settings (there was a bug with Peertube previous to 3.2.0) ### Fixes diff --git a/server/lib/settings.ts b/server/lib/settings.ts index a48e5806..3a9c9421 100644 --- a/server/lib/settings.ts +++ b/server/lib/settings.ts @@ -56,7 +56,7 @@ Before asking for help, please use this diagnostic tool: name: 'chat-auto-display', label: 'Automatically open the chat', type: 'input-checkbox', - default: false, // FIXME: set true when Peertube 3.2.0 is out (https://github.com/Chocobozzz/PeerTube/issues/4106) + default: true, private: false }) registerSetting({ @@ -64,20 +64,20 @@ Before asking for help, please use this diagnostic tool: label: 'Show the «open in new window» button', private: false, type: 'input-checkbox', - default: false // FIXME: set true when Peertube 3.2.0 is out (https://github.com/Chocobozzz/PeerTube/issues/4106) + default: true }) registerSetting({ name: 'chat-only-locals', label: 'Chats are only available for local videos.', type: 'input-checkbox', - default: false, // FIXME: set true when Peertube 3.2.0 is out (https://github.com/Chocobozzz/PeerTube/issues/4106) + default: true, private: false }) registerSetting({ name: 'chat-all-lives', label: 'Activate chat for all lives', type: 'input-checkbox', - default: false, // FIXME: set true when Peertube 3.2.0 is out (https://github.com/Chocobozzz/PeerTube/issues/4106) + default: true, descriptionHTML: 'If checked, a chat will be added to all lives.', private: false })