From 5cf15e22deded401c7aa29cfaf3d9f08522a33fb Mon Sep 17 00:00:00 2001 From: vanhofen Date: Wed, 3 Aug 2016 00:32:31 +0200 Subject: [PATCH] imdb: show original title after rating stuff Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/893f77e0d67f93513c3012318d557755a56b3992 Author: vanhofen Date: 2016-08-03 (Wed, 03 Aug 2016) Origin message was: ------------------ - imdb: show original title after rating stuff --- src/gui/imdb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/imdb.cpp b/src/gui/imdb.cpp index c119025b7..0c2b34039 100644 --- a/src/gui/imdb.cpp +++ b/src/gui/imdb.cpp @@ -330,9 +330,9 @@ int CIMDB::getIMDb(const std::string& epgTitle) void CIMDB::getIMDbData(std::string& txt) { //TODO: localize - txt += "Original-Titel: "+m["Title"]+"\n"; txt += "Metascore: "+m["Metascore"]+(m["Metascore"] == "N/A" ? "\n" : "/100\n"); txt += "Stimmen: "+m["imdbVotes"]+"\n"; + txt += "Original-Titel: "+m["Title"]+"\n"; txt += "Datum: "+m["Released"]+" | "+m["Country"]+" | "+m["Runtime"]+"\n"; txt += "Genre: "+m["Genre"]+"\n"; txt += "Awards: "+m["Awards"]+"\n";