From e8ac2a4815f89ab8301e69ff4d6de1d52500c5cc Mon Sep 17 00:00:00 2001 From: Cyborus Date: Sun, 19 Nov 2023 14:24:08 -0500 Subject: [PATCH] ssh url is not parseable as `Url`, don't try to --- src/repository.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/repository.rs b/src/repository.rs index af302a8..4f3f6dc 100644 --- a/src/repository.rs +++ b/src/repository.rs @@ -270,7 +270,7 @@ pub struct Repository { pub release_counter: u64, pub repo_transfer: Option, pub size: u64, - pub ssh_url: Url, + pub ssh_url: String, pub starts_count: u64, pub template: bool, #[serde(with = "time::serde::rfc3339")]