Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.

Commit

Permalink
Remove deprecated time field in room.upload (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
feymartynov committed Aug 19, 2020
1 parent a8b23c8 commit 6d3b0b7
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/app/endpoint/system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,6 @@ struct RtcUploadEventData {
serialize_with = "crate::serde::milliseconds_bound_tuples_option",
skip_serializing_if = "Option::is_none"
)]
time: Option<Vec<(Bound<i64>, Bound<i64>)>>, // Deprecated
#[serde(
serialize_with = "crate::serde::milliseconds_bound_tuples_option",
skip_serializing_if = "Option::is_none"
)]
segments: Option<Vec<(Bound<i64>, Bound<i64>)>>,
#[serde(
serialize_with = "crate::serde::ts_milliseconds_option",
Expand Down Expand Up @@ -139,7 +134,6 @@ where
id: rtc.id(),
status: recording.status().to_owned(),
uri,
time: recording.segments().to_owned(),
segments: recording.segments().to_owned(),
started_at: recording.started_at().to_owned(),
};
Expand Down

0 comments on commit 6d3b0b7

Please sign in to comment.