Fix searches for lifts from/to cities containing a slash (like Frankfurt/Main)
authorPhilipp Zabel <philipp.zabel@gmail.com>
Wed, 1 Sep 2010 16:17:58 +0000 (18:17 +0200)
committerPhilipp Zabel <philipp.zabel@gmail.com>
Wed, 1 Sep 2010 16:19:21 +0000 (18:19 +0200)
src/adac-mitfahrclub.vala

index 614bc77..810a861 100644 (file)
@@ -414,7 +414,7 @@ public class AdacMitfahrclub {
                        return null;
 
                string url = HTTP_BASE_URI + "/mitfahrclub/%s/%s/b.html".printf (
-                       city_from,
+                       city_from.replace ("/", "_"),
                        city_to
                );