Fix webtorrent disabled by default
This commit is contained in:
parent
3aa5001eaa
commit
e280dd0681
1 changed files with 2 additions and 1 deletions
|
@ -14,7 +14,8 @@ function getStoredWebTorrentEnabled (): boolean {
|
|||
const value = getLocalStorage('webtorrent_enabled')
|
||||
if (value !== null && value !== undefined) return value === 'true'
|
||||
|
||||
return false
|
||||
// By default webtorrent is enabled
|
||||
return true
|
||||
}
|
||||
|
||||
function getStoredMute () {
|
||||
|
|
Loading…
Add table
Reference in a new issue