Hound & NEWS

pull/11963/head
Juan Ignacio Sánchez Lara 8 years ago
parent 375b3da640
commit 388225cf07

@ -155,6 +155,7 @@ Development
* Fix a DB deadlock while simultaneously updating and deleting layers (#11568)
* Improve speed of map name availability check, improves map creation and renaming times (#11435)
* Fix redirection after logout for subdomainless URLs (#11361)
* Fix unp detecting .carto files with "rar" in the name as rar files (#11954)
* Fix scrollbar in carousel (#11061)
* Fix layer loading at embeds (#11554)
* Restrict login from organization pages to organization users, and redirect to Central otherwise

@ -96,8 +96,8 @@ module CartoDB
current_directory = Dir.pwd
Dir.chdir(temporary_directory)
stdout, stderr, status = safe_unp_path(path) do |path|
Open3.capture3(*command_for(path))
stdout, stderr, status = safe_unp_path(path) do |safe_path|
Open3.capture3(*command_for(safe_path))
end
Dir.chdir(current_directory)
@ -242,7 +242,7 @@ module CartoDB
FileUtils.mv(new_path, path)
end
else
return yield(path)
yield(path)
end
end
end

Loading…
Cancel
Save