From 5bba297000866ea1e25aebd0b947c26c8957208e Mon Sep 17 00:00:00 2001 From: Philipp Zabel Date: Thu, 7 Jan 2010 18:35:22 +0100 Subject: [PATCH] Google plugin: parse " to quotation marks in movie titles --- src/plugins/google-parser.vala | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/plugins/google-parser.vala b/src/plugins/google-parser.vala index 204e913..fa71710 100644 --- a/src/plugins/google-parser.vala +++ b/src/plugins/google-parser.vala @@ -178,6 +178,11 @@ public class GoogleParser : Object { i += 4; continue; } + if (s.offset (i).has_prefix (""")) { + result += "\""; + i += 5; + continue; + } result += s.substring (i, 1); } -- 1.7.9.5