browser: do not prevent redraw when connection unavailable (#3605)

Co-authored-by: maico <maico.timmerman@adyen.com>
mine
Maico Timmerman 2025-10-05 15:54:13 +02:00 committed by GitHub
parent 1d8cb6ced0
commit c07aa2a5f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -330,7 +330,7 @@ func (b *Browser) TableDataChanged(mdata *model1.TableData) {
cancel = b.cancelFn
b.mx.RUnlock()
if !b.app.ConOK() || cancel == nil || !b.app.IsRunning() {
if cancel == nil || !b.app.IsRunning() {
return
}