Browse Source

Remove stray # prefix to topic labels

Mark Rousskov 5 years ago
parent
commit
6896be082e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/handlers/major_change.rs

+ 1 - 1
src/handlers/major_change.rs

@@ -138,7 +138,7 @@ async fn handle_input(
     labels.push(github::Label { name: label_to_add });
     let github_req = issue.set_labels(&ctx.github, labels);
 
-    let mut zulip_topic = format!("#{} {}", issue.zulip_topic_reference(), issue.title);
+    let mut zulip_topic = format!("{} {}", issue.zulip_topic_reference(), issue.title);
     zulip_topic.truncate(60); // Zulip limitation
 
     let zulip_stream = config.zulip_stream.to_string();