diff --git a/core/src/com/unciv/ui/worldscreen/optionstable/DropBox.kt b/core/src/com/unciv/ui/worldscreen/optionstable/DropBox.kt index 5ea56f7e08..490e0b6ce3 100644 --- a/core/src/com/unciv/ui/worldscreen/optionstable/DropBox.kt +++ b/core/src/com/unciv/ui/worldscreen/optionstable/DropBox.kt @@ -55,7 +55,7 @@ class DropBox(){ fun downloadFile(fileName:String):String{ val response = dropboxApi("https://content.dropboxapi.com/2/files/download", - dropboxApiArg = "{\"path\":\"$fileName\"}") + contentType = "text/plain",dropboxApiArg = "{\"path\":\"$fileName\"}") return response }