Browse Source

fix spinner by using enabled not refresh like on the original file

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
Andy Scherzinger 3 years ago
parent
commit
dc705ccf40

+ 1 - 1
app/src/main/java/com/nextcloud/talk/controllers/ContactsController.kt

@@ -704,7 +704,7 @@ class ContactsController(args: Bundle) :
         }
 
         try {
-            binding.controllerGenericRv.swipeRefreshLayout.isRefreshing = !adapter!!.hasFilter()
+            binding.controllerGenericRv.swipeRefreshLayout.isEnabled = !adapter!!.hasFilter()
         } catch (npe: NullPointerException) {
             // view binding can be null
             // since this is called asynchronously and UI might have been destroyed in the meantime