Skip to content

Commit

Permalink
Ensure self-sending is unidentified
Browse files Browse the repository at this point in the history
  • Loading branch information
rubdos committed Dec 19, 2023
1 parent 9af1f42 commit 5d8f291
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libsignal-service/src/sender.rs
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ where
);
self.try_send_message(
self.local_address,
None,
unidentified_access.as_ref(),
&sync_message,
timestamp,
false,
Expand Down Expand Up @@ -415,7 +415,7 @@ where
let result = self
.try_send_message(
self.local_address,
None,
unidentified_access.as_ref(),

Check failure on line 418 in libsignal-service/src/sender.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find value `unidentified_access` in this scope

error[E0425]: cannot find value `unidentified_access` in this scope --> libsignal-service/src/sender.rs:418:25 | 418 | unidentified_access.as_ref(), | ^^^^^^^^^^^^^^^^^^^ not found in this scope

Check failure on line 418 in libsignal-service/src/sender.rs

View workflow job for this annotation

GitHub Actions / Build (libsignal-service-actix, Rust beta)

cannot find value `unidentified_access` in this scope

Check failure on line 418 in libsignal-service/src/sender.rs

View workflow job for this annotation

GitHub Actions / Build (libsignal-service-hyper, Rust nightly)

cannot find value `unidentified_access` in this scope

Check failure on line 418 in libsignal-service/src/sender.rs

View workflow job for this annotation

GitHub Actions / Build (libsignal-service-actix, Rust nightly)

cannot find value `unidentified_access` in this scope

Check failure on line 418 in libsignal-service/src/sender.rs

View workflow job for this annotation

GitHub Actions / Build (libsignal-service-hyper, Rust beta)

cannot find value `unidentified_access` in this scope

Check failure on line 418 in libsignal-service/src/sender.rs

View workflow job for this annotation

GitHub Actions / Build (libsignal-service-actix, Rust stable)

cannot find value `unidentified_access` in this scope

Check failure on line 418 in libsignal-service/src/sender.rs

View workflow job for this annotation

GitHub Actions / Build (libsignal-service-actix, Rust 1.70)

cannot find value `unidentified_access` in this scope

Check failure on line 418 in libsignal-service/src/sender.rs

View workflow job for this annotation

GitHub Actions / Build (libsignal-service-hyper, Rust stable)

cannot find value `unidentified_access` in this scope
&sync_message,
timestamp,
false,
Expand Down

0 comments on commit 5d8f291

Please sign in to comment.