Skip to content

Commit

Permalink
Resolved bug where we assumed timezone (#977)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob-Tate authored Aug 27, 2024
1 parent c218f2c commit eda1a27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/services/miscellaneous/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3238,7 +3238,7 @@ impl MiscellaneousService {
ProgressUpdateInput {
metadata_id: id,
progress: Some(progress),
date: Some(Utc::now().date_naive()),
date: Some(get_current_date(&self.timezone)),
show_season_number: pu.show_season_number,
show_episode_number: pu.show_episode_number,
podcast_episode_number: pu.podcast_episode_number,
Expand Down

0 comments on commit eda1a27

Please sign in to comment.