Skip to content

Commit

Permalink
Fix #1343 block_suggestion response does not support description in a…
Browse files Browse the repository at this point in the history
…n option (#1351)
  • Loading branch information
seratch committed Aug 20, 2024
1 parent 11a6def commit efa3f24
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,10 @@
public class Option {
private TextObject text;
private String value;
private TextObject description;

// For backward-compatibility
public Option(TextObject text, String value) {
this(text, value, null);
}
}

0 comments on commit efa3f24

Please sign in to comment.