Radish alpha
r
Radicle CI broker
Radicle
Git (anonymous pull)
Log in to clone via SSH
refactor(src/filter.rs): rename local variable to avoid typo
Lars Wirzenius committed 1 year ago
commit 74097d6026f426405a0e547d1c5fa9b06bb5ce8c
parent 2ef02467f86827ca627daabcdaf6bd14eba0ff21
1 file changed +1 -1
modified src/filter.rs
@@ -119,7 +119,7 @@ impl EventFilter {
                branch,
                ..
            }) => match self {
-
                Self::Node(wantedc) => from_node == wantedc,
+
                Self::Node(wanted) => from_node == wanted,
                Self::Repository(wanted) => repo == wanted,
                Self::Branch(wanted) => branch == wanted,
                Self::DefaultBranch => is_default_branch(repo, branch),