aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/repository/vcs/git_bitbucket_driver.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/repository/vcs/git_bitbucket_driver.rs')
-rw-r--r--crates/shirabe/src/repository/vcs/git_bitbucket_driver.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/crates/shirabe/src/repository/vcs/git_bitbucket_driver.rs b/crates/shirabe/src/repository/vcs/git_bitbucket_driver.rs
index 85288bd..644ac90 100644
--- a/crates/shirabe/src/repository/vcs/git_bitbucket_driver.rs
+++ b/crates/shirabe/src/repository/vcs/git_bitbucket_driver.rs
@@ -728,15 +728,12 @@ impl GitBitbucketDriver {
if !self.inner.io.is_interactive() && fetching_repo_data {
self.attempt_clone_fallback()?;
- let mut headers: IndexMap<String, PhpMixed> = IndexMap::new();
- headers
- .insert("url".to_string(), PhpMixed::String("dummy".to_string()));
return Ok(Response::new(
- headers,
+ "dummy".to_string(),
Some(200),
vec![],
Some("null".to_string()),
- )??);
+ ));
}
}
}