wpesrc: Always log loaded URI

This commit is contained in:
Philippe Normand 2019-01-31 16:30:18 +00:00 committed by Sebastian Dröge
parent 451074a7e0
commit 22b94a7a84

View file

@ -330,14 +330,14 @@ void WPEThreadedView::loadUriUnlocked(const gchar* uri)
{
if (webkit.uri)
g_free(webkit.uri);
GST_DEBUG("loading %s", uri);
webkit.uri = g_strdup(uri);
webkit_web_view_load_uri(webkit.view, webkit.uri);
}
void WPEThreadedView::loadUri(const gchar* uri)
{
GST_DEBUG("loading %s", uri);
struct UriContext {
WPEThreadedView& view;
const gchar* uri;