From 9c7f53f6fccf55d4aa67063ab806f22c871c20e1 Mon Sep 17 00:00:00 2001 From: Torsten Grote Date: Thu, 5 Mar 2020 13:14:12 -0300 Subject: Download binary deps before building on CI and fix lint issue --- app/src/main/java/net/taler/wallet/history/WalletHistory.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/src') diff --git a/app/src/main/java/net/taler/wallet/history/WalletHistory.kt b/app/src/main/java/net/taler/wallet/history/WalletHistory.kt index 76b11ea..bb37ffa 100644 --- a/app/src/main/java/net/taler/wallet/history/WalletHistory.kt +++ b/app/src/main/java/net/taler/wallet/history/WalletHistory.kt @@ -95,10 +95,10 @@ class WalletHistory : Fragment(), OnEventClickListener { addItemDecoration(myItemDecoration) } - model.historyProgress.observe(this, Observer { show -> + model.historyProgress.observe(viewLifecycleOwner, Observer { show -> historyProgressBar.visibility = if (show) VISIBLE else INVISIBLE }) - model.history.observe(this, Observer { history -> + model.history.observe(viewLifecycleOwner, Observer { history -> historyEmptyState.visibility = if (history.isEmpty()) VISIBLE else INVISIBLE historyAdapter.update(history) }) -- cgit v1.2.3