Skip to content

Commit

Permalink
Change music position from int to long
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdgeisler committed Nov 29, 2022
1 parent 5803841 commit afb43d6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

@JsonInclude(Include.NON_NULL)
public class SpeakerPlaybackPosition {
public Integer position;
public Long position;
public LocalDateTime timestamp;

public SpeakerPlaybackPosition(final Integer position, final LocalDateTime timestamp) {
public SpeakerPlaybackPosition(final Long position, final LocalDateTime timestamp) {
this.position = position;
this.timestamp = timestamp;
}
Expand Down

0 comments on commit afb43d6

Please sign in to comment.