From fc170baf3f3594e5179ac613099826ee04c99d3f Mon Sep 17 00:00:00 2001 From: Kazuki Sawada Date: Sat, 20 Feb 2016 00:30:12 +0900 Subject: [PATCH] Fix import from gitlab.com Fixes #12652 --- CHANGELOG | 1 + lib/gitlab/gitlab_import/importer.rb | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index b7e88d47a01..ae9b25fd7bb 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 59926084d07..850b73244c6 100644 --- a/lib/gitlab/gitlab_import/importer.rb +++ b/lib/gitlab/gitlab_import/importer.rb @@ -12,7 +12,7 @@ module Gitlab end def execute - project_identifier = CGI.escape(project.import_source, '/') + project_identifier = CGI.escape(project.import_source) #Issues && Comments issues = client.issues(project_identifier)