fix broken array

merge-requests/150/merge
Matthew Chambers 2021-06-28 22:18:32 -05:00
rodzic 817e9c5e18
commit 84059439c1
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -23,7 +23,7 @@ function renderRoster(callRoster, rosterSettings)
var visibleCallList = [];
for (entry in callRoster)
{
if (entry.tx)
if (callRoster[entry].tx)
{
visibleCallList.push(callRoster[entry]);
}