mirror of
https://github.com/msfjarvis/gitice
synced 2025-08-14 20:57:01 +05:30
Unwrap upstream URL to prevent obscure panics
Signed-off-by: ATechnoHazard <amolele@gmail.com>
This commit is contained in:
parent
ed35930562
commit
7b3d457c62
2 changed files with 20 additions and 5 deletions
|
@ -37,11 +37,7 @@ fn main() -> anyhow::Result<()> {
|
|||
if let Ok(remote) = repo.find_remote(
|
||||
// This is a rather ugly hack, but not sure how else to get the required name
|
||||
// doesn't seem to work with the full name such as `refs/remotes/origin/master`
|
||||
upstream
|
||||
.as_str()
|
||||
.unwrap_or("None")
|
||||
.split('/')
|
||||
.collect::<Vec<&str>>()[2],
|
||||
upstream.as_str().unwrap().split('/').collect::<Vec<&str>>()[2],
|
||||
) {
|
||||
let path = entry.path().to_string_lossy().to_string();
|
||||
repos.insert(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue