Unverified Commit c2a6c8a4 authored by Mygod's avatar Mygod Committed by GitHub

Ignore all exceptions whilst updating subscriptions

parent 49f3891b
......@@ -132,7 +132,7 @@ class SubscriptionService : Service(), CoroutineScope {
tempFile.outputStream().use { out -> inputStream.copyTo(out) }
}
tempFile
} catch (e: IOException) {
} catch (e: Exception) {
Timber.d(e)
launch(Dispatchers.Main) {
Toast.makeText(this@SubscriptionService, e.readableMessage, Toast.LENGTH_LONG).show()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment