Change "Default" to "Unlimited" in maximum video bitrate setting

This commit is contained in:
redphx 2024-05-12 18:59:50 +07:00
parent 761e58254a
commit 99c81cfb90

View File

@ -330,7 +330,7 @@ export class Preferences {
value = parseInt(value); value = parseInt(value);
if (value === 0) { if (value === 0) {
return t('default'); return t('unlimited');
} }
return null; return null;