lyrics/original links for songs

master
Matt Huntington 3 months ago
parent ccd9fb8081
commit 2b16ac7808

@ -93,7 +93,9 @@ int main()
int id = res->getInt("id"); int id = res->getInt("id");
string title = res->getString("title"); string title = res->getString("title");
string notes = res->getString("notes"); string notes = res->getString("notes");
entries[i] = {{"id", id}, {"title", title}, {"notes", notes}}; string lyrics_link = res->getString("lyrics_link");
string original_link = res->getString("original_link");
entries[i] = {{"id", id}, {"title", title}, {"notes", notes}, {"lyrics_link", lyrics_link}, {"original_link", original_link}};
i++; i++;
} }

Loading…
Cancel
Save