Fix: changing default value to false for every checkbox settings (Peertube bug in <=3.0.1).
This commit is contained in:
parent
720ce18478
commit
5f0708a942
@ -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
|
||||
|
4
main.js
4
main.js
@ -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.'
|
||||
|
Loading…
Reference in New Issue
Block a user