imdb: add plot to imdb output

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

Origin message was:
------------------
- imdb: add plot to imdb output

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2016-08-04 17:09:15 +02:00
parent 083eb93b55
commit a84d7a326a

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";