We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6b3022 commit f42a8abCopy full SHA for f42a8ab
servers/su/src/domain/core/flows.rs
@@ -509,6 +509,12 @@ pub async fn write_item(
509
return Err("Data-Protocol tag not present".to_string());
510
}
511
512
+ if let Some(invalid_tag) = tags.iter().find(
513
+ |tag| tag.name.ends_with("+link") || tag.value.ends_with("+link")
514
+ ) {
515
+ return Err(format!("Tag {} cannot contain +link", invalid_tag.name));
516
+ }
517
+
518
let type_tag = match type_tag {
519
Some(t) => t,
520
None => return Err("Invalid Type Tag".to_string()),
servers/su/su
-368 Bytes
0 commit comments