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)