From 770f4e488f93b835db89bd2f4f1c1a5080b542f7 Mon Sep 17 00:00:00 2001 From: Jamin M Date: Mon, 6 Jan 2025 22:16:12 -0700 Subject: [PATCH] fix payments url --- src/info.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/info.rs b/src/info.rs index b8ac9757..8eb2b04f 100644 --- a/src/info.rs +++ b/src/info.rs @@ -58,7 +58,7 @@ pub struct RelayInfo { #[serde(skip_serializing_if = "Option::is_none")] pub limitation: Option, #[serde(skip_serializing_if = "Option::is_none")] - pub payment_url: Option, + pub payments_url: Option, #[serde(skip_serializing_if = "Option::is_none")] pub fees: Option, } @@ -86,7 +86,7 @@ impl From for RelayInfo { ), }; - let (payment_url, fees) = if p.enabled { + let (payments_url, fees) = if p.enabled { let admission_fee = if p.admission_cost > 0 { Some(vec![Fee { amount: p.admission_cost * 1000, @@ -110,7 +110,7 @@ impl From for RelayInfo { publication: post_fee, }; - let payment_url = if p.enabled && i.relay_url.is_some() { + let payments_url = if p.enabled && i.relay_url.is_some() { Some(format!( "{}join", i.relay_url.clone().unwrap().replace("ws", "http") @@ -118,7 +118,7 @@ impl From for RelayInfo { } else { None }; - (payment_url, Some(fees)) + (payments_url, Some(fees)) } else { (None, None) }; @@ -133,7 +133,7 @@ impl From for RelayInfo { software: Some("https://git.sr.ht/~gheartsfield/nostr-rs-relay".to_owned()), version: CARGO_PKG_VERSION.map(std::borrow::ToOwned::to_owned), limitation: Some(limitations), - payment_url, + payments_url, fees, icon: i.relay_icon, }