From 6cd4816939ef4514e1e73dfd9cc1d97ae4ae069c Mon Sep 17 00:00:00 2001 From: Frans-Lukas Date: Fri, 10 Apr 2020 16:39:41 +0200 Subject: [PATCH] #1972 small change of error output text --- .../org/kiwix/kiwixmobile/core/history/HistoryPresenter.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/org/kiwix/kiwixmobile/core/history/HistoryPresenter.kt b/core/src/main/java/org/kiwix/kiwixmobile/core/history/HistoryPresenter.kt index 21a387d98..4139156df 100644 --- a/core/src/main/java/org/kiwix/kiwixmobile/core/history/HistoryPresenter.kt +++ b/core/src/main/java/org/kiwix/kiwixmobile/core/history/HistoryPresenter.kt @@ -57,13 +57,13 @@ internal class HistoryPresenter @Inject constructor( .observeOn(mainThread) .subscribe( { hList: List -> 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) { dataSource.deleteHistory(deleteList).subscribe({}, { e: Throwable -> - Log.e("HistoryPresenter", "Failed to delete history", e) + Log.e("HistoryPresenter", "Failed to delete history.", e) }) } }