Skip to content

Commit

Permalink
Fix test_lousy_uri_parse
Browse files Browse the repository at this point in the history
  • Loading branch information
c0dev0id committed Jan 29, 2023
1 parent 854de3a commit 46495d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/clib/soup.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ luaH_soup_uri_tostring(lua_State *L)
}
lua_pop(L, 1);

gchar *str = g_uri_to_string(uri);
gchar *str = g_uri_to_string_partial(uri, G_URI_HIDE_PASSWORD);
lua_pushstring(L, str);
g_free(str);
g_uri_unref(uri); // GUri is a `struct _GUri` rather than a gobject,
Expand Down

0 comments on commit 46495d3

Please sign in to comment.