Fix unknown timelord when off air
This commit is contained in:
parent
c6b744dbf5
commit
ed961daa43
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ export function Timelord() {
|
|||
];
|
||||
|
||||
let sourceName = "Unknown";
|
||||
if (studio > 0 && studio < sourceNames.length) {
|
||||
if (studio > 0 && studio <= sourceNames.length) {
|
||||
sourceName = sourceNames[studio - 1];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue