Google plugin: parse " to quotation marks in movie titles
[cinaest] / src / plugins / google-parser.vala
index 204e913..fa71710 100644 (file)
@@ -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);
                }