In src/win32.c:

> @@ -794,7 +795,14 @@ void win32_open_browser(const gchar *uri)
>  				uri++;
>  		}
>  	}
> -	ShellExecute(NULL, "open", uri, NULL, NULL, SW_SHOWNORMAL);
> +	ret = (gint) ShellExecute(NULL, "open", uri, NULL, NULL, SW_SHOWNORMAL);
> +	if (ret <= 32)

I love Windows :D


Reply to this email directly or view it on GitHub.