Skip to content

Commit

Permalink
Fix column number typo for notes_note_link
Browse files Browse the repository at this point in the history
  • Loading branch information
nassibnassar committed Jan 20, 2024
1 parent 46c1ae5 commit c6d6728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extract.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ void retrieve_direct_notes_note_link(const PGresult *res, string* j)
{
string id, link_id;
pq_get_value_json_string(res, 0, 0, &id);
pq_get_value_json_string(res, 0, 2, &link_id);
pq_get_value_json_string(res, 0, 1, &link_id);
*j = string("") +
" {\n" +
" \"id\": " + id + ",\n" +
Expand Down

0 comments on commit c6d6728

Please sign in to comment.