Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure self-sending is unidentified #252

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@
);
self.try_send_message(
self.local_address,
None,
unidentified_access.as_ref(),
&sync_message,
timestamp,
false,
Expand Down Expand Up @@ -415,7 +415,7 @@
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
Loading