Unverified Commit 24d2f7e1 authored by charliedough's avatar charliedough Committed by GitHub
Browse files

Update ProjectApi to allow topic removal (#1120)

parent fcecb0b2
......@@ -1360,7 +1360,7 @@ public class ProjectApi extends AbstractApi implements Constants {
formData.withParam("tag_list", String.join(",", project.getTagList()));
}
if (project.getTopics() != null && !project.getTopics().isEmpty()) {
if (project.getTopics() != null) {
formData.withParam("topics", String.join(",", project.getTopics()));
}
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment