mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix assignment in switch expression issues
This commit is contained in:
parent
31c8060463
commit
9cb03ba4e5
4 changed files with 6 additions and 6 deletions
|
@ -67,7 +67,7 @@ function getDeviceHtml(device) {
|
|||
}
|
||||
|
||||
function getTunerName(providerId) {
|
||||
switch (providerId = providerId.toLowerCase()) {
|
||||
switch (providerId.toLowerCase()) {
|
||||
case 'm3u':
|
||||
return 'M3U';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue