Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Now actually using description instead of a title when item sharing i…
…s restarted.
  • Loading branch information
Marko Mattila committed Feb 5, 2014
1 parent feed571 commit 515ed84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dbmanager.cpp
Expand Up @@ -766,7 +766,7 @@ MediaItem * DbManager::mediaItem(int key) const
// this point if there isn't anything...
if (query.next()) {
item->setValue(MediaItem::Title, query.value(rec.indexOf("title")));
item->setValue(MediaItem::Title, query.value(rec.indexOf("description")));
item->setValue(MediaItem::Description, query.value(rec.indexOf("description")));
}

query.finish();
Expand Down

0 comments on commit 515ed84

Please sign in to comment.