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