Skip to content

Commit

Permalink
wui: Move comma to optional part of message
Browse files Browse the repository at this point in the history
  • Loading branch information
ysmilda authored and danopernis committed Sep 16, 2024
1 parent f5a498a commit 9b5764d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/WUI/link_content/basic_gets.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -431,9 +431,9 @@ json::JsonResult get_job_v1(size_t resume_point, json::JsonOutput &output) {
// Note: This modifies the buffer, so it has to be done after all other
// uses of it above!!
dirname(sfn_path);
JSON_FIELD_STR("path", sfn_path) JSON_COMMA;
JSON_FIELD_STR("path", sfn_path);
if (has_stat) {
JSON_FIELD_INT_G(has_stat, "size", st.st_size) JSON_COMMA;
JSON_COMMA JSON_FIELD_INT_G(has_stat, "size", st.st_size) JSON_COMMA;
JSON_FIELD_INT_G(has_stat, "m_timestamp", st.st_mtime);
}
JSON_OBJ_END;
Expand Down

0 comments on commit 9b5764d

Please sign in to comment.