| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 626577e commit 554cd2c
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1576,10 +1576,10 @@ std::string URL::SerializeURL(const struct url_data* url, | |||
| 1576 | 1576 | } | |
| 1577 | 1577 | } | |
| 1578 | 1578 | if (url->flags & URL_FLAGS_HAS_QUERY) { | |
| 1579 | - output = "?" + url->query; | ||
| 1579 | + output += "?" + url->query; | ||
| 1580 | 1580 | } | |
| 1581 | 1581 | if (!exclude && url->flags & URL_FLAGS_HAS_FRAGMENT) { | |
| 1582 | - output = "#" + url->fragment; | ||
| 1582 | + output += "#" + url->fragment; | ||
| 1583 | 1583 | } | |
| 1584 | 1584 | return output; | |
| 1585 | 1585 | } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments