gosxappinfo: fix typo in url_escape_hostname

This duplicated everything after the hostname.

https://bugzilla.gnome.org/show_bug.cgi?id=734946
This commit is contained in:
Christoph Reiter 2017-03-15 08:37:10 +01:00 committed by Patrick Griffis
parent 392bd59eb8
commit c20ab772b1

View File

@ -203,7 +203,7 @@ url_escape_hostname (const char *url)
else
host = g_strdup (host_start);
hostname = g_hostname_to_ascii (host_start);
hostname = g_hostname_to_ascii (host);
ret = g_strconcat (scheme, "://", hostname, host_end, NULL);