diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gmutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gmutil.c b/src/gmutil.c index 4b49e1d0..a919d621 100644 --- a/src/gmutil.c +++ b/src/gmutil.c | |||
@@ -99,7 +99,7 @@ const iString *absoluteUrl_String(const iString *d, const iString *urlMaybeRelat | |||
99 | iUrl rel; | 99 | iUrl rel; |
100 | init_Url(&orig, d); | 100 | init_Url(&orig, d); |
101 | init_Url(&rel, urlMaybeRelative); | 101 | init_Url(&rel, urlMaybeRelative); |
102 | if (equalCase_Rangecc(&rel.protocol, "data")) { | 102 | if (equalCase_Rangecc(&rel.protocol, "data") || equalCase_Rangecc(&rel.protocol, "about")) { |
103 | /* Special case, the contents should be left unparsed. */ | 103 | /* Special case, the contents should be left unparsed. */ |
104 | return urlMaybeRelative; | 104 | return urlMaybeRelative; |
105 | } | 105 | } |