mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 04:06:14 +00:00
Fixed an issue in UWP export caused by duplicate entry for extensions in content types file.
This commit is contained in:
parent
899b900427
commit
9cb46ed4e7
@ -249,7 +249,7 @@ void AppxPackager::make_content_types(const String &p_path) {
|
||||
Map<String, String> types;
|
||||
|
||||
for (int i = 0; i < file_metadata.size(); i++) {
|
||||
String ext = file_metadata[i].name.get_extension();
|
||||
String ext = file_metadata[i].name.get_extension().to_lower();
|
||||
|
||||
if (types.has(ext)) {
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user