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
This commit is contained in:
parent
040d42fc24
commit
8ba6ce43ac
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ pub struct Sourcehut;
|
||||||
|
|
||||||
impl GitHostingProvider for Sourcehut {
|
impl GitHostingProvider for Sourcehut {
|
||||||
fn name(&self) -> String {
|
fn name(&self) -> String {
|
||||||
"Gitee".to_string()
|
"SourceHut".to_string()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn base_url(&self) -> Url {
|
fn base_url(&self) -> Url {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue