Skip to content

Commit

Permalink
Fix AsyncEpoxyController constructor to correctly use boolean setting (
Browse files Browse the repository at this point in the history
  • Loading branch information
elihart authored Sep 11, 2018
1 parent c268d60 commit 8b47562
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public AsyncEpoxyController() {
* both on the main thread.
*/
public AsyncEpoxyController(boolean enableAsync) {
this(true, true);
this(enableAsync, enableAsync);
}

/**
Expand Down

0 comments on commit 8b47562

Please sign in to comment.