From 85f23862798d47525a67c3a8895e7ff6951b1376 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Sun, 12 Apr 2009 23:31:42 +0200 Subject: [PATCH] Revert "Apply URI magic to externally opened addresses" The commit had the wrong author name. --- midori/midori-app.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/midori/midori-app.c b/midori/midori-app.c index b753a64f..27fbe87a 100644 --- a/midori/midori-app.c +++ b/midori/midori-app.c @@ -14,7 +14,6 @@ #endif #include "midori-app.h" -#include "sokoke.h" #include #include @@ -386,16 +385,14 @@ midori_browser_message_received_cb (UniqueApp* instance, first = (open_external_pages_in == MIDORI_NEW_PAGE_CURRENT); while (*uris) { - gchar* fixed_uri = sokoke_magic_uri (*uris, NULL); if (first) { - midori_browser_set_current_uri (browser, fixed_uri); + midori_browser_set_current_uri (browser, *uris); first = FALSE; } else midori_browser_set_current_page (browser, - midori_browser_add_uri (browser, fixed_uri)); - g_free (fixed_uri); + midori_browser_add_uri (browser, *uris)); uris++; } /* g_strfreev (uris); */