mirror of
https://github.com/godotengine/godot.git
synced 2025-10-28 04:04:24 +00:00
Strip query string when parsing HTTP request line for path
(cherry picked from commit 91477cd4a9)
This commit is contained in:
parent
c952201d97
commit
38e0ca9b47
1 changed files with 5 additions and 2 deletions
|
|
@ -136,8 +136,11 @@ public:
|
||||||
// Wrong protocol
|
// Wrong protocol
|
||||||
ERR_FAIL_COND_MSG(req[0] != "GET" || req[2] != "HTTP/1.1", "Invalid method or HTTP version.");
|
ERR_FAIL_COND_MSG(req[0] != "GET" || req[2] != "HTTP/1.1", "Invalid method or HTTP version.");
|
||||||
|
|
||||||
const String req_file = req[1].get_file();
|
const int query_index = req[1].find_char('?');
|
||||||
const String req_ext = req[1].get_extension();
|
const String path = (query_index == -1) ? req[1] : req[1].substr(0, query_index);
|
||||||
|
|
||||||
|
const String req_file = path.get_file();
|
||||||
|
const String req_ext = path.get_extension();
|
||||||
const String cache_path = EditorSettings::get_singleton()->get_cache_dir().plus_file("web");
|
const String cache_path = EditorSettings::get_singleton()->get_cache_dir().plus_file("web");
|
||||||
const String filepath = cache_path.plus_file(req_file);
|
const String filepath = cache_path.plus_file(req_file);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue