Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
yelp
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
148
Issues
148
List
Boards
Labels
Service Desk
Milestones
Merge Requests
17
Merge Requests
17
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
yelp
Commits
c71a8c12
Commit
c71a8c12
authored
Oct 03, 2020
by
Shaun McCance
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check against SOUP_URI_SCHEME_FILE instead of str comparison
parent
8cf0a546
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
libyelp/yelp-uri-builder.c
libyelp/yelp-uri-builder.c
+1
-1
No files found.
libyelp/yelp-uri-builder.c
View file @
c71a8c12
...
...
@@ -32,7 +32,7 @@ build_network_uri (const gchar *uri)
soup_uri
=
soup_uri_new
(
uri
);
/* Don't mangle URIs for local files */
if
(
g_str_equal
(
soup_uri
->
scheme
,
"file"
)
)
if
(
soup_uri
->
scheme
==
SOUP_URI_SCHEME_FILE
)
return
g_strdup
(
uri
);
/* Build the URI that will be passed to WebKit. Relative URIs will be
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment