upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/repo_ref.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/repo_ref.rs b/src/repo_ref.rs
index 9fb1f0c..7016257 100644
--- a/src/repo_ref.rs
+++ b/src/repo_ref.rs
@@ -117,7 +117,10 @@ impl RepoRef {
117 } else { 117 } else {
118 self.identifier.to_string() 118 self.identifier.to_string()
119 }), 119 }),
120 Tag::from_standardized(TagStandard::Reference(self.root_commit.to_string())), 120 Tag::custom(
121 nostr::TagKind::Custom(std::borrow::Cow::Borrowed("r")),
122 vec![self.root_commit.to_string(), "euc".to_string()],
123 ),
121 Tag::from_standardized(TagStandard::Name(self.name.clone())), 124 Tag::from_standardized(TagStandard::Name(self.name.clone())),
122 Tag::from_standardized(TagStandard::Description(self.description.clone())), 125 Tag::from_standardized(TagStandard::Description(self.description.clone())),
123 Tag::custom( 126 Tag::custom(