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 8ce8c78 commit 832b2e0Copy full SHA for 832b2e0
aztec/src/main/kotlin/org/wordpress/aztec/AztecExceptionHandler.kt
@@ -64,6 +64,10 @@ class AztecExceptionHandler(private var logHelper: WeakReference<ExceptionHandle
64
if (detected) {
65
visualEditor.get()?.externalLogger?.logException(DynamicLayoutGetBlockIndexOutOfBoundsException("Error #8828", ex))
66
}
67
+ // See: https://github.com/wordpress-mobile/AztecEditor-Android/issues/880
68
+ } else if (ex is java.lang.IllegalArgumentException && ex.message?.contains("Center point is not inside any of the rectangles") == true) {
69
+ visualEditor.get()?.externalLogger?.logException(ex)
70
+ return
71
72
73
rootHandler?.uncaughtException(thread, ex)
0 commit comments