mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fix: keyerror on comment create and update (#492)
This commit is contained in:
parent
765cfdbf7e
commit
2501c819d3
@ -676,8 +676,8 @@ def create_comment_activity(
|
|||||||
verb="created",
|
verb="created",
|
||||||
actor=actor,
|
actor=actor,
|
||||||
field="comment",
|
field="comment",
|
||||||
new_value=requested_data.get("comment_html"),
|
new_value=requested_data.get("comment_html", ""),
|
||||||
new_identifier=requested_data.get("id"),
|
new_identifier=requested_data.get("id", None),
|
||||||
issue_comment_id=requested_data.get("id", None),
|
issue_comment_id=requested_data.get("id", None),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
@ -696,11 +696,11 @@ def update_comment_activity(
|
|||||||
verb="updated",
|
verb="updated",
|
||||||
actor=actor,
|
actor=actor,
|
||||||
field="comment",
|
field="comment",
|
||||||
old_value=current_instance.get("comment_html"),
|
old_value=current_instance.get("comment_html", ""),
|
||||||
old_identifier=current_instance.get("id"),
|
old_identifier=current_instance.get("id"),
|
||||||
new_value=requested_data.get("comment_html"),
|
new_value=requested_data.get("comment_html", ""),
|
||||||
new_identifier=current_instance.get("id"),
|
new_identifier=current_instance.get("id", None),
|
||||||
issue_comment_id=current_instance.get("id"),
|
issue_comment_id=current_instance.get("id", None),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user