From 783c31fab599128fe48c75e906d5c14043e8d558 Mon Sep 17 00:00:00 2001 From: KTH Date: Tue, 27 Jun 2023 00:53:58 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20::=20=EC=95=84=ED=8B=B0=EC=8A=A4?= =?UTF-8?q?=ED=8A=B8=20=EC=83=81=EC=84=B8=20=EC=9D=B4=EB=AF=B8=EC=A7=80=20?= =?UTF-8?q?URL=20=EC=9D=B8=EC=BD=94=EB=94=A9=20=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ViewControllers/ArtistDetailHeaderViewController.swift | 4 +++- Tuist/ProjectDescriptionHelpers/Environment.swift | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Projects/Features/ArtistFeature/Sources/ViewControllers/ArtistDetailHeaderViewController.swift b/Projects/Features/ArtistFeature/Sources/ViewControllers/ArtistDetailHeaderViewController.swift index d7c651a95..1afb4959b 100644 --- a/Projects/Features/ArtistFeature/Sources/ViewControllers/ArtistDetailHeaderViewController.swift +++ b/Projects/Features/ArtistFeature/Sources/ViewControllers/ArtistDetailHeaderViewController.swift @@ -120,8 +120,10 @@ extension ArtistDetailHeaderViewController { ) self.introDescriptionLabel.attributedText = artistIntroDescriptionAttributedString + let originImageURLString: String = WMImageAPI.fetchArtistWithSquare(id: model.ID, version: model.imageSquareVersion).toString + let encodedImageURLString: String = originImageURLString.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) ?? originImageURLString artistImageView.kf.setImage( - with: URL(string: WMImageAPI.fetchArtistWithSquare(id: model.ID, version: model.imageSquareVersion).toString), + with: URL(string: encodedImageURLString), placeholder: nil, options: [.transition(.fade(0.2))] ) diff --git a/Tuist/ProjectDescriptionHelpers/Environment.swift b/Tuist/ProjectDescriptionHelpers/Environment.swift index 29dde266c..3affed07d 100644 --- a/Tuist/ProjectDescriptionHelpers/Environment.swift +++ b/Tuist/ProjectDescriptionHelpers/Environment.swift @@ -10,7 +10,7 @@ public enum Environment { public static let platform = Platform.iOS public static let baseSetting: SettingsDictionary = SettingsDictionary() .marketingVersion("2.0.0") - .currentProjectVersion("41") + .currentProjectVersion("42") .debugInformationFormat(DebugInformationFormat.dwarfWithDsym) .otherLinkerFlags(["-ObjC"]) .bitcodeEnabled(false)