mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2025-11-08 21:24:56 -05:00
minor api fixes
* videoSampleEntryId should be a number, not a string * fix some markdown formatting * fix missing description of sampleFileBytes
This commit is contained in:
@@ -440,7 +440,7 @@ pub struct Recording {
|
||||
pub end_time_90k: i64,
|
||||
pub sample_file_bytes: i64,
|
||||
pub video_samples: i64,
|
||||
pub video_sample_entry_id: String,
|
||||
pub video_sample_entry_id: i32,
|
||||
pub start_id: i32,
|
||||
pub open_id: u32,
|
||||
|
||||
|
||||
@@ -712,7 +712,7 @@ impl Service {
|
||||
open_id: row.open_id,
|
||||
first_uncommitted: row.first_uncommitted,
|
||||
video_samples: row.video_samples,
|
||||
video_sample_entry_id: row.video_sample_entry_id.to_string(),
|
||||
video_sample_entry_id: row.video_sample_entry_id,
|
||||
growing: row.growing,
|
||||
});
|
||||
if !out
|
||||
|
||||
Reference in New Issue
Block a user