Skip to content

Commit

Permalink
fix: RPPL-2824: change default completed value in resume point reques…
Browse files Browse the repository at this point in the history
…t to false
  • Loading branch information
maggie98choy committed Nov 22, 2024
1 parent 7595754 commit a4f12a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/main/src/processor/account_link_processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ impl AccountLinkProcessor {
MediaEventRequest::MediaEventAccountLink(MediaEventsAccountLinkRequestParams {
media_event: MediaEvent {
content_id: watched_info.entity_id.to_owned(),
completed: watched_info.completed.unwrap_or(true),
completed: watched_info.completed.unwrap_or(false),
progress: watched_info.progress,
progress_unit: request.unit.clone(),
watched_on: watched_info.watched_on.clone(),
Expand Down

0 comments on commit a4f12a4

Please sign in to comment.