chore (backend-rs): remove unneeded reference
This commit is contained in:
parent
2fa0ca355d
commit
9b91035a79
1 changed files with 2 additions and 2 deletions
|
@ -8,8 +8,8 @@ pub fn add_note_to_antenna(antenna_id: &str, note_id: &str) -> Result<(), Error>
|
|||
redis_conn()?.xadd_maxlen(
|
||||
redis_key(format!("antennaTimeline:{}", antenna_id)),
|
||||
StreamMaxlen::Approx(200),
|
||||
format!("{}-*", get_timestamp(¬e_id)),
|
||||
&[("note", ¬e_id)],
|
||||
format!("{}-*", get_timestamp(note_id)),
|
||||
&[("note", note_id)],
|
||||
)?;
|
||||
|
||||
let stream = Stream::Antenna {
|
||||
|
|
Loading…
Reference in a new issue