From 9259b72537dbfc4100a5b65bd58b3a9a61d1fc2d Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 19 Feb 2005 18:17:26 +0000 Subject: [PATCH] Fix some typos in the field names in FetchGroup. --- bigscreen/fetch_group.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bigscreen/fetch_group.cpp b/bigscreen/fetch_group.cpp index ff71950..6411525 100644 --- a/bigscreen/fetch_group.cpp +++ b/bigscreen/fetch_group.cpp @@ -39,8 +39,8 @@ void FetchGroup::operator() (pqxx::transaction<> &t) so.id = -1; } else { so.id = i["song"].as(so.id); - so.title = i["song"].as(so.title); - so.artist = i["song"].as(so.artist); + so.title = i["title"].as(so.title); + so.artist = i["artist"].as(so.artist); } sc.song = so; -- 2.39.2