]> git.openstreetmap.org Git - rails.git/commitdiff
Use binary mode for trace files
authorTom Hughes <tom@compton.nu>
Sun, 4 Nov 2012 14:35:34 +0000 (14:35 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 4 Nov 2012 14:41:01 +0000 (14:41 +0000)
We don't want to try and do any enoding conversions (or indeed any
newline conversions) on uploaded trace files.

app/controllers/trace_controller.rb

index 05f97bf0d507a667973fbf6405263af44d328c53..4b138bdaecf5d52f22c08faec64671516bda6d92 100644 (file)
@@ -368,7 +368,7 @@ private
     filename = "/tmp/#{rand}"
 
     # ...and save the uploaded file to that location
-    File.open(filename, "w") { |f| f.write(file.read) }
+    File.open(filename, "wb") { |f| f.write(file.read) }
 
     # Create the trace object, falsely marked as already
     # inserted to stop the import daemon trying to load it