summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorges Basile Stavracas Neto <georges.stavracas@gmail.com>2023-03-03 19:49:37 -0300
committerGeorges Basile Stavracas Neto <georges.stavracas@gmail.com>2023-03-03 19:50:30 -0300
commitfd7baeb787d62a2f91e507f8a64dfe8efbeab898 (patch)
treee55f710115e33a78df621d3e4f57b7c2e4c7b2c3
parent0e8332b07bab2d851e13f3be3bfa67356dd76f73 (diff)
downloadgnome-calendar-fd7baeb787d62a2f91e507f8a64dfe8efbeab898.tar.gz
utils/source-discoverer: Pass error
An oversight of the GUri port. Closes https://gitlab.gnome.org/GNOME/gnome-calendar/-/issues/794
-rw-r--r--src/utils/gcal-source-discoverer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/gcal-source-discoverer.c b/src/utils/gcal-source-discoverer.c
index 02043f28..4b32e11a 100644
--- a/src/utils/gcal-source-discoverer.c
+++ b/src/utils/gcal-source-discoverer.c
@@ -250,7 +250,7 @@ discover_file_in_thread (DiscovererData *data,
GCAL_ENTRY;
- guri = g_uri_parse (data->uri, SOUP_HTTP_URI_FLAGS | G_URI_FLAGS_PARSE_RELAXED, NULL);
+ guri = g_uri_parse (data->uri, SOUP_HTTP_URI_FLAGS | G_URI_FLAGS_PARSE_RELAXED, error);
if (!guri)
GCAL_RETURN (NULL);