diff --git a/steam-runtime-tools/xdg-portal.c b/steam-runtime-tools/xdg-portal.c index fb3c56a950fdec881d84c1bbb149da4c0057d02c..19361224f542dcef02dcd338bcb7dabd483f2933 100644 --- a/steam-runtime-tools/xdg-portal.c +++ b/steam-runtime-tools/xdg-portal.c @@ -611,7 +611,8 @@ _srt_check_xdg_portals (gchar **envp, g_debug ("The helper output is not a JSON object"); issues |= SRT_XDG_PORTAL_ISSUES_UNKNOWN; if (details_out != NULL) - *details_out = _srt_xdg_portal_new (local_error->message, issues, NULL, NULL); + *details_out = _srt_xdg_portal_new ("Helper output is not a JSON object", + issues, NULL, NULL); return issues; } @@ -622,7 +623,8 @@ _srt_check_xdg_portals (gchar **envp, g_debug ("The helper output JSON is malformed or incomplete"); issues |= SRT_XDG_PORTAL_ISSUES_UNKNOWN; if (details_out != NULL) - *details_out = _srt_xdg_portal_new (local_error->message, issues, NULL, NULL); + *details_out = _srt_xdg_portal_new ("Helper output does not contain 'interfaces'", + issues, NULL, NULL); return issues; }