fix: re-poll on fail in case that was breaking anything

This commit is contained in:
0x330a 2023-05-11 10:49:55 +10:00
parent 7d32edb133
commit bad5f923aa
No known key found for this signature in database
GPG key ID: 267811D6E6A2698C

View file

@ -239,6 +239,9 @@ class Poller(private val configFactory: ConfigFactoryProtocol, debounceTimer: Ti
}
poll(snode, deferred)
}
}.fail {
Log.e("Loki", "Failed to get raw batch response", it)
poll(snode, deferred)
}
}
}