commit 604b3384f17025e7c59b7e2e875fb455b0c84ee6
parent 3f1454e2754fe249f2591075192ac8643ebc96fe
Author: Antoine A <>
Date: Thu, 5 Feb 2026 10:44:55 +0100
cyclos: fix payto URI fmt
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/taler-cyclos/src/lib.rs b/taler-cyclos/src/lib.rs
@@ -1,6 +1,6 @@
/*
This file is part of TALER
- Copyright (C) 2025 Taler Systems SA
+ Copyright (C) 2025, 2026 Taler Systems SA
TALER is free software; you can redistribute it and/or modify it under the
terms of the GNU Affero General Public License as published by the Free Software
@@ -95,7 +95,7 @@ pub struct MissingParts;
impl PaytoImpl for CyclosAccount {
fn as_payto(&self) -> PaytoURI {
- PaytoURI::from_parts(CYCLOS, format_args!("{}/{}", self.root, self.id))
+ PaytoURI::from_parts(CYCLOS, format_args!("/{}/{}", self.root, self.id))
}
fn parse(raw: &PaytoURI) -> Result<Self, PaytoErr> {