Skip to content

Commit

Permalink
fix typo in relay information about payments url
Browse files Browse the repository at this point in the history
  • Loading branch information
mroxso committed Nov 12, 2023
1 parent 9a471fe commit b522f9e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pub struct RelayInfo {
#[serde(skip_serializing_if = "Option::is_none")]
pub limitation: Option<Limitation>,
#[serde(skip_serializing_if = "Option::is_none")]
pub payment_url: Option<String>,
pub payments_url: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub fees: Option<Fees>,
}
Expand All @@ -77,7 +77,7 @@ impl From<Settings> for RelayInfo {
payment_required: Some(p.enabled),
};

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,
Expand All @@ -101,15 +101,15 @@ impl From<Settings> 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")
))
} else {
None
};
(payment_url, Some(fees))
(payments_url, Some(fees))
} else {
(None, None)
};
Expand All @@ -124,7 +124,7 @@ impl From<Settings> for RelayInfo {
software: Some("https://github.com/mroxso/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,
}
Expand Down

0 comments on commit b522f9e

Please sign in to comment.