Skip to content

Commit

Permalink
Rppl 2824: Change Default "completed" Value in Resume Point Request T…
Browse files Browse the repository at this point in the history
…o False (#691)

fix: RPPL-2824: change default completed value in resume point request to false
  • Loading branch information
maggie98choy authored Nov 25, 2024
1 parent 2d46ddb commit 621a265
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 621a265

Please sign in to comment.