Merge pull request #52513 from Ev1lbl0w/fix_path_double_slash

Fix path with multiple slashes not being corrected on templates
This commit is contained in:
Rémi Verschelde 2021-09-20 13:00:29 +02:00 committed by GitHub
commit 0068247ab6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,11 +55,7 @@ String ProjectSettings::get_resource_path() const {
const String ProjectSettings::IMPORTED_FILES_PATH("res://.godot/imported");
String ProjectSettings::localize_path(const String &p_path) const {
if (resource_path == "") {
return p_path; //not initialized yet
}
if (p_path.begins_with("res://") || p_path.begins_with("user://") ||
if (resource_path.is_empty() || p_path.begins_with("res://") || p_path.begins_with("user://") ||
(p_path.is_absolute_path() && !p_path.begins_with(resource_path))) {
return p_path.simplify_path();
}