Revert "Apply URI magic to externally opened addresses"
The commit had the wrong author name.
This commit is contained in:
parent
1b8de1588f
commit
85f2386279
1 changed files with 2 additions and 5 deletions
|
@ -14,7 +14,6 @@
|
|||
#endif
|
||||
|
||||
#include "midori-app.h"
|
||||
#include "sokoke.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <gtk/gtk.h>
|
||||
|
@ -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); */
|
||||
|
|
Loading…
Reference in a new issue