declex icon indicating copy to clipboard operation
declex copied to clipboard

Error parsing return

Open smaugho opened this issue 7 years ago • 0 comments

In this method:

public boolean onError(Exception e) {
        String message = selectNotNull(e.getMessage(), e.getCause()!=null? e.getCause().getMessage() : null);
        $Toast("An error occurred: {message}");
        return false;
}

The Actions parser doesn't create the results of the override method correctly.

smaugho avatar May 23 '17 09:05 smaugho