imdb: add plot to imdb output

Origin commit data
------------------
Commit: 64ea94aa30
Author: vanhofen <vanhofen@gmx.de>
Date: 2016-08-04 (Thu, 04 Aug 2016)

Origin message was:
------------------
- imdb: add plot to imdb output
This commit is contained in:
vanhofen
2016-08-04 17:09:15 +02:00
parent fc16f49beb
commit 82acb7f40b

View File

@@ -337,8 +337,11 @@ void CIMDB::getIMDbData(std::string& txt)
txt += "Genre: "+m["Genre"]+"\n";
txt += "Awards: "+m["Awards"]+"\n";
txt += "Regisseur: "+m["Director"]+"\n";
txt += "Drehbuch: "+m["Writer"]+"\n\n";
txt += "Drehbuch: "+m["Writer"]+"\n";
txt += "\n";
txt += "Darsteller: "+m["Actors"]+"\n";
txt += "\n";
txt += m["Plot"];
if(m["imdbID"].empty() || m["Response"]!="True")
txt = "Keine Daten gefunden";