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

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)
}
}
}