Verified Commit b30650fa authored by Lukas Wiest's avatar Lukas Wiest 🚂
Browse files

refactor(util/ticketing): update title of ticketing, not only on creation

parent 8222d87f
......@@ -275,6 +275,7 @@ public class UnifiedTicketingUtil {
public static Ticket updateTicketFromResult(TicketSystem ts, Ticket ticket, ModocotResult result, boolean compilationError) {
ticket
.open()
.setTitle(createTicketTitleFromResult(ts, result, compilationError))
.setDescription(createTicketDescriptionFromResult(ts, result, compilationError));
if (ts.hasLabelSupport()) ticket.addLabel(MODOCOT_LABEL);
......
Markdown is supported
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