Skip to content

Commit

Permalink
Fix conferences retrieval (#161)
Browse files Browse the repository at this point in the history
A new field, closedCaptions, was added recently: scraly/developers-conferences-agenda#675.
  • Loading branch information
marcwrobel committed Oct 20, 2023
1 parent 896ac66 commit 4e65f97
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

### Fixed

- Fix conferences retrieval (#161).

### Deprecated

### Removed

### Internal

Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

// Those fields are not used (but we still want this object to exactly reflect the expected JSON
// structure).
@JsonIgnoreProperties({"cfp", "status"})
@JsonIgnoreProperties({"cfp", "status", "closedCaptions"})
@SuppressWarnings("java:S6218") // don't care
public record Conference(String name, String hyperlink, String location, long[] date, String misc)
implements MarkdownSerializable {
Expand Down

0 comments on commit 4e65f97

Please sign in to comment.