Skip to content
This repository was archived by the owner on Feb 28, 2021. It is now read-only.

Commit f46c588

Browse files
author
Thomas Scholtes
authored
Merge pull request #193 from radicle-dev/fix-non-terminting-project-domain-display
Fix infinite loop on ProjectDomain display
2 parents 3fd8c4f + bc197fe commit f46c588

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/project_domain.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ impl ProjectDomain {
5050
#[cfg(feature = "std")]
5151
impl core::fmt::Display for ProjectDomain {
5252
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
53-
write!(f, "{}", self)
53+
write!(f, "{}", self.0)
5454
}
5555
}
5656

0 commit comments

Comments
 (0)