mirror of
https://github.com/kiwix/kiwix-android.git
synced 2025-08-03 10:46:53 -04:00
#1972 small change of error output text
This commit is contained in:
parent
da211ddf26
commit
6cd4816939
@ -57,13 +57,13 @@ internal class HistoryPresenter @Inject constructor(
|
||||
.observeOn(mainThread)
|
||||
.subscribe(
|
||||
{ hList: List<HistoryListItem> -> view?.notifyHistoryListFiltered(hList) },
|
||||
{ e: Throwable -> Log.e("HistoryPresenter", "Failed to filter history", e) }
|
||||
{ e: Throwable -> Log.e("HistoryPresenter", "Failed to filter history.", e) }
|
||||
))
|
||||
}
|
||||
|
||||
override fun deleteHistory(deleteList: List<HistoryListItem>) {
|
||||
dataSource.deleteHistory(deleteList).subscribe({}, { e: Throwable ->
|
||||
Log.e("HistoryPresenter", "Failed to delete history", e)
|
||||
Log.e("HistoryPresenter", "Failed to delete history.", e)
|
||||
})
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user