From 5faeaf6371651c336896ba698e05e0fb031c8ff2 Mon Sep 17 00:00:00 2001 From: asonix Date: Sun, 1 Jan 2023 10:01:39 -0600 Subject: [PATCH] Revert "Apply patch from perillamint on github" This reverts commit f291b24269e24ebdc1b832db83babc431343c6f1. --- src/config.rs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/config.rs b/src/config.rs index ae795a7..badf9ec 100644 --- a/src/config.rs +++ b/src/config.rs @@ -58,7 +58,6 @@ pub struct Config { base_uri: IriAbsoluteString, sled_path: PathBuf, source_repo: IriString, - source_url: IriString, opentelemetry_url: Option, telegram_token: Option, telegram_admin_handle: Option, @@ -204,11 +203,6 @@ impl Config { (None, None) => None, }; - let source_url = match Self::git_hash() { - Some(hash) => format!("{}/tree/{}", config.source_repo, hash).parse().unwrap(), - None => config.source_repo.clone() - }; - Ok(Config { hostname: config.hostname, addr: config.addr, @@ -220,7 +214,6 @@ impl Config { base_uri, sled_path: config.sled_path, source_repo: config.source_repo, - source_url, opentelemetry_url: config.opentelemetry_url, telegram_token: config.telegram_token, telegram_admin_handle: config.telegram_admin_handle, @@ -410,7 +403,7 @@ impl Config { } pub(crate) fn source_code(&self) -> &IriString { - &self.source_url + &self.source_repo } pub(crate) fn opentelemetry_url(&self) -> Option<&IriString> {