Fix: changing default value to false for every checkbox settings (Peertube bug in <=3.0.1).

This commit is contained in:
John Livingston 2021-03-08 10:22:41 +01:00
parent 720ce18478
commit 5f0708a942
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,9 @@
# Changelog
## v1.0.5
* Fix: changing default value to false for every checkbox settings (Peertube bug in <=3.0.1: https://github.com/Chocobozzz/PeerTube/issues/3838).
## v1.0.4
### Features

View File

@ -30,7 +30,7 @@ async function register ({
name: 'chat-only-locals',
label: 'Chats are only available for local videos.',
type: 'input-checkbox',
default: true,
default: false, // TODO: set to true when peertube has fixed https://github.com/Chocobozzz/PeerTube/issues/3838
private: false
})
registerSetting({
@ -65,7 +65,7 @@ async function register ({
name: 'chat-use-builtin',
label: 'Use builtin ConverseJS',
type: 'input-checkbox',
default: true,
default: false, // TODO: set to true when peertube has fixed https://github.com/Chocobozzz/PeerTube/issues/3838
private: false,
descriptionHTML: 'If checked, use a builtin ConverseJS iframe.<br>' +
'You still have to configure an external XMPP service. Please see the documentation.'