Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Commit

Permalink
Fix code
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaeling committed Feb 9, 2024
1 parent e081b55 commit be4c685
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions kuksa_databroker/databroker/src/broker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1515,10 +1515,9 @@ impl<'a, 'b> AuthorizedAccess<'a, 'b> {

let (sender, receiver) = mpsc::channel(10);
if !entries_on_changed.is_empty() {
let sender_on_changed = sender.clone();
let subscription = ChangeSubscription {
entries: entries_on_changed,
sender: sender_on_changed,
sender: sender.clone(),
permissions: self.permissions.clone(),
};

Expand Down

0 comments on commit be4c685

Please sign in to comment.