From 8ba6ce43ac6b081bce264503c1081878529d1118 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Mon, 17 Mar 2025 09:32:23 -0400 Subject: [PATCH] git_hosting_providers: Fix incorrect name for SourceHut (#26915) This PR fixes an issue where the SourceHut Git hosting provider was using the wrong name. Release Notes: - N/A --- crates/git_hosting_providers/src/providers/sourcehut.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/git_hosting_providers/src/providers/sourcehut.rs b/crates/git_hosting_providers/src/providers/sourcehut.rs index a2dd14a345..c64f72193d 100644 --- a/crates/git_hosting_providers/src/providers/sourcehut.rs +++ b/crates/git_hosting_providers/src/providers/sourcehut.rs @@ -11,7 +11,7 @@ pub struct Sourcehut; impl GitHostingProvider for Sourcehut { fn name(&self) -> String { - "Gitee".to_string() + "SourceHut".to_string() } fn base_url(&self) -> Url {