We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 757b720 commit c0c684aCopy full SHA for c0c684a
WordPressUtils/src/main/java/org/wordpress/android/util/ptr/CustomSwipeRefreshLayout.java
@@ -22,6 +22,10 @@ public boolean onTouchEvent(MotionEvent event) {
22
try{
23
return super.onTouchEvent(event);
24
} catch(IllegalArgumentException e) {
25
+ // Fix for https://github.com/wordpress-mobile/WordPress-Android/issues/2373
26
+ // Catch IllegalArgumentException which can be fired by the underlying SwipeRefreshLayout.onTouchEvent()
27
+ // method.
28
+ // When android support-v4 fixes it, we'll have to remove that custom layout completely.
29
AppLog.e(T.UTILS, e);
30
return true;
31
}
0 commit comments