Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/java/cn/har01d/alist_tvbox/dto/AliFileList.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
public class AliFileList {
private List<AliFileItem> items = new ArrayList<>();
@JsonProperty("next_marker")
private String next;
private String nextMarker;
}
2 changes: 1 addition & 1 deletion src/main/java/cn/har01d/alist_tvbox/dto/TmdbDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class TmdbDto {
@JsonProperty("vote_average")
private String score;
@JsonProperty("release_date")
private LocalDate date;
private LocalDate releaseDate;
@JsonProperty("first_air_date")
private LocalDate firstDate;
}
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public static class Stats {

@Data
public static class Owner {
private long mid;
private long memberId;
private String name;
private String face;
}
Expand Down