diff --git a/CHANGELOG b/CHANGELOG index b7e88d47a01ee4eeed5703c35e12479800ae14fe..ae9b25fd7bb79a1fa50b578a7ab5e61fd1c10336 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -14,6 +14,7 @@ v 8.5.2 - Fix sidebar overlapping content when screen width was below 1200px - Fix error 500 when commenting on a commit - Fix broken icons on installations with relative URL (Artem Sidorenko) + - Fix import from gitlab.com (KazSawada) - Fix help keyboard shortcut on relative URL setups (Artem Sidorenko) v 8.5.1 diff --git a/lib/gitlab/gitlab_import/importer.rb b/lib/gitlab/gitlab_import/importer.rb index 59926084d075a78b70d0ca9c0a87397f142c4a97..850b73244c628fe5d60718a27fefdca38704eb7c 100644 --- a/lib/gitlab/gitlab_import/importer.rb +++ b/lib/gitlab/gitlab_import/importer.rb @@ -12,7 +12,7 @@ def initialize(project) end def execute - project_identifier = CGI.escape(project.import_source, '/') + project_identifier = CGI.escape(project.import_source) #Issues && Comments issues = client.issues(project_identifier)