Skip to content

Commit

Permalink
Fix incorrect URL for bluesky
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianSko committed Dec 11, 2024
1 parent a84b107 commit 2c1f25e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/LinksKit/Model/SocialPlatform.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public enum SocialPlatform: Hashable {

func url(handle: String) -> URL {
switch self {
case .bluesky: URL(string: "https://app.bsky.cz/profile/\(handle)")!
case .bluesky: URL(string: "https://bsky.app/profile/\(handle)")!
case .facebook: URL(string: "https://facebook.com/\(handle)")!
case .github: URL(string: "https://github.com/\(handle)")!
case .instagram: URL(string: "https://instagram.com/\(handle)")!
Expand Down

0 comments on commit 2c1f25e

Please sign in to comment.