Fix for changing clients

This commit is contained in:
samcm 2016-12-14 22:11:25 +11:00
parent 88c4979ea3
commit 559820f5dd
1 changed files with 1 additions and 1 deletions

View File

@ -127,6 +127,7 @@ ipcRenderer.on('home-tab-clientclicked-result', function(event, result, client)
//console.log('Set port to ' + plex.httpServerPort) //console.log('Set port to ' + plex.httpServerPort)
var clientsObj = document.querySelectorAll('.plexClient') var clientsObj = document.querySelectorAll('.plexClient')
clientTestInProgress = false
for (let i = 0; i < clientsObj.length; i++) { for (let i = 0; i < clientsObj.length; i++) {
var iterClient = clientsObj[i] var iterClient = clientsObj[i]
var child = iterClient.childNodes[1] var child = iterClient.childNodes[1]
@ -160,7 +161,6 @@ ipcRenderer.on('home-tab-clientclicked-result', function(event, result, client)
} }
} }
} }
clientTestInProgress = false
}) })