Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
FongMi committed Jan 10, 2025
1 parent 07d8deb commit a33dba1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions app/src/main/java/com/fongmi/android/tv/bean/History.java
Original file line number Diff line number Diff line change
Expand Up @@ -234,10 +234,6 @@ public int getRevPlayHint() {
return isRevPlay() ? R.string.play_backward_hint : R.string.play_forward_hint;
}

public boolean isNew() {
return getCreateTime() == 0 && getPosition() == 0;
}

public static List<History> get() {
return get(VodConfig.getCid());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ public void onVideoSizeChanged(@NonNull VideoSize videoSize) {

@Override
public void onTracksChanged(@NonNull Tracks tracks) {
PlayerEvent.track();
if (!tracks.isEmpty()) PlayerEvent.track();
}

@Override
Expand Down

0 comments on commit a33dba1

Please sign in to comment.