Skip to content

Commit

Permalink
add cause to snackbar
Browse files Browse the repository at this point in the history
  • Loading branch information
NiciDieNase committed Dec 29, 2019
1 parent 91dfbcc commit b8d31e3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class Downloader(
}
updateState.postValue(LiveEvent(DownloaderState.DONE, data = persistentEvents))
} catch (e: Exception) {
updateState.postValue(LiveEvent(DownloaderState.DONE, error = "Error updating Events for ${conference.acronym}"))
updateState.postValue(LiveEvent(DownloaderState.DONE, error = "Error updating Events for ${conference.acronym} (${e.cause})"))
e.printStackTrace()
}
}
Expand Down

0 comments on commit b8d31e3

Please sign in to comment.