Skip to content

Commit e08de03

Browse files
committed
fixup
1 parent 69e801f commit e08de03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/handlers/relabel.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pub(super) async fn handle_command(
3636

3737
// Check label authorization for the current user
3838
for delta in &new_input.0 {
39-
let name = delta.label().as_str();
39+
let name = delta.label() as &str;
4040
let err = match check_filter(name, config, is_member(&event.user(), &ctx.team).await) {
4141
Ok(CheckFilterResult::Allow) => None,
4242
Ok(CheckFilterResult::Deny) => Some(format!(

0 commit comments

Comments
 (0)