fix error when quality was not present in preference store
This commit is contained in:
parent
8c3f87ae86
commit
b88254c794
@ -42,7 +42,7 @@ export async function register(options :RegisterServerOptions) {
|
|||||||
|
|
||||||
// Get stored data from the database, default to constants if not found
|
// Get stored data from the database, default to constants if not found
|
||||||
hardwareDecode = await options.storageManager.getData('hardware-decode') == "true" // ?? DEFAULT_HARDWARE_DECODE // not needed, since undefined == "true" -> false
|
hardwareDecode = await options.storageManager.getData('hardware-decode') == "true" // ?? DEFAULT_HARDWARE_DECODE // not needed, since undefined == "true" -> false
|
||||||
quality = parseInt(await options.storageManager.getData('compression-level')) ?? DEFAULT_QUALITY
|
quality = parseInt(await options.storageManager.getData('compression-level')) || DEFAULT_QUALITY
|
||||||
|
|
||||||
for (const [resolution, bitrate] of baseBitrates) {
|
for (const [resolution, bitrate] of baseBitrates) {
|
||||||
const key = `base-bitrate-${resolution}`
|
const key = `base-bitrate-${resolution}`
|
||||||
|
Loading…
Reference in New Issue
Block a user