From 44a178d624c48d0ddd161ab671dd4b1801de9bd0 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 ------------------ Branch: ni/coolstream 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 ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- 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";