20862: Fix use of deprecated stdlib.
authorTom Clegg <tom@curii.com>
Fri, 18 Aug 2023 17:16:06 +0000 (13:16 -0400)
committerTom Clegg <tom@curii.com>
Fri, 18 Aug 2023 20:20:31 +0000 (16:20 -0400)
Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom@curii.com>

apps/workbench/app/controllers/collections_controller.rb

index 9073d06c178c3edeb23bee3b3d16cfcafca5f4ff..680c324f5cd0255fb89f1ce6b2ed9333a0e7603a 100644 (file)
@@ -376,7 +376,7 @@ class CollectionsController < ApplicationController
       uri.path += 't=' + opts[:path_token] + '/'
     end
     uri.path += '_/'
-    uri.path += URI.escape(file) if file
+    uri.path += ERB::Util.url_encode(file).gsub('%2F', '/') if file
 
     query = Hash[URI.decode_www_form(uri.query || '')]
     { query_token: 'api_token',