From: Philipp Zabel Date: Thu, 28 Jan 2010 17:31:10 +0000 (+0100) Subject: IMDb SQLite: unescape quotation marks when retrieving plots from the database X-Git-Url: https://vcs.maemo.org/git/?a=commitdiff_plain;h=622a255d13a6cab4567b4475b6f7d0cf649c6949;p=cinaest IMDb SQLite: unescape quotation marks when retrieving plots from the database --- diff --git a/src/imdb/imdb-sqlite.vala b/src/imdb/imdb-sqlite.vala index b53262a..81e0672 100644 --- a/src/imdb/imdb-sqlite.vala +++ b/src/imdb/imdb-sqlite.vala @@ -233,7 +233,7 @@ class IMDbSqlite : Object { do { rc = stmt.step (); if (rc == Sqlite.ROW) { - return stmt.column_text (0); + return stmt.column_text (0).replace (""", "\""); } } while (rc == Sqlite.ROW);