Skip to content

Commit

Permalink
Fix note link function call
Browse files Browse the repository at this point in the history
  • Loading branch information
nassibnassar committed Jan 20, 2024
1 parent efa8866 commit 46c1ae5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/extract.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -654,10 +654,10 @@ bool try_retrieve_direct(const data_source& source, ldp_log* lg,
retrieve_direct_notes(res.result, &j);
break;
case data_source_type::notes_link:
retrieve_direct_notes(res.result, &j);
retrieve_direct_notes_link(res.result, &j);
break;
case data_source_type::notes_note_link:
retrieve_direct_notes(res.result, &j);
retrieve_direct_notes_note_link(res.result, &j);
break;
default:
throw runtime_error("internal error: unknown value for data_source_type");
Expand Down

0 comments on commit 46c1ae5

Please sign in to comment.