We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69e801f commit e08de03Copy full SHA for e08de03
src/handlers/relabel.rs
@@ -36,7 +36,7 @@ pub(super) async fn handle_command(
36
37
// Check label authorization for the current user
38
for delta in &new_input.0 {
39
- let name = delta.label().as_str();
+ let name = delta.label() as &str;
40
let err = match check_filter(name, config, is_member(&event.user(), &ctx.team).await) {
41
Ok(CheckFilterResult::Allow) => None,
42
Ok(CheckFilterResult::Deny) => Some(format!(
0 commit comments