Don't rely on current_tab == "some_string", since we might change tab name.

This commit is contained in:
Stanislav Nikitin 2016-10-04 23:51:37 +05:00
parent 063f6a622a
commit 26a3ead52a
1 changed files with 2 additions and 2 deletions

View File

@ -805,9 +805,9 @@ func (m *MainWindow) UpdateServers() {
case data := <- done_chan:
fmt.Println("Information about servers successfully gathered")
ctx.Database.UpdateServers(data)
if current_tab == "Servers" {
if strings.Contains(current_tab, "Servers") {
ctx.Eventer.LaunchEvent("loadAllServers")
} else {
} else if strings.Contains(current_tab, "Favorites") {
ctx.Eventer.LaunchEvent("loadFavoriteServers")
}
case <- error_chan: