This commit is contained in:
Dennis Eichhorn 2020-12-26 13:18:10 +01:00
parent 0d3646f786
commit f11ec000d8

View File

@ -180,7 +180,7 @@ final class ApiController extends Controller
*/
public function createKanbanCardCommentFromRequest(RequestAbstract $request) : KanbanCardComment
{
$comment = new KanbanCardComment();
$comment = new KanbanCardComment();
$comment->description = Markdown::parse((string) ($request->getData('plain') ?? ''));
$comment->descriptionRaw = (string) ($request->getData('plain') ?? '');
$comment->setCard((int) $request->getData('card'));