From 22b94a7a84428f8fae86b6f6da0fd8bd8a6ccdde Mon Sep 17 00:00:00 2001 From: Philippe Normand Date: Thu, 31 Jan 2019 16:30:18 +0000 Subject: [PATCH] wpesrc: Always log loaded URI --- ext/wpe/WPEThreadedView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/wpe/WPEThreadedView.cpp b/ext/wpe/WPEThreadedView.cpp index 7770163e2c..532ec54a44 100644 --- a/ext/wpe/WPEThreadedView.cpp +++ b/ext/wpe/WPEThreadedView.cpp @@ -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;