You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-24 15:26:15 +00:00
Fixed an issue in UWP export caused by duplicate entry for extensions in content types file.
(cherry picked from commit 9cb46ed4e7)
This commit is contained in:
@@ -263,7 +263,7 @@ void AppxPackager::make_content_types(const String &p_path) {
|
||||
|
||||
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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user