remove accidentally writing vim action into file

This commit is contained in:
Maple Nebel 2026-05-30 19:35:05 +02:00
commit 1da5f09bc8
2 changed files with 4 additions and 2 deletions

View file

@ -409,7 +409,7 @@ impl ExtendedMatchmakeSession {
}) {
return Ok(false);
}
if !search_criteria.attribs.get(2).is_some_and(|s: w| {
if !search_criteria.attribs.get(2).is_some_and(|s| {
self.session
.attributes
.get(2)

View file

@ -149,7 +149,9 @@ impl Secure for User {
url.options.iter().any(|o| o == target_addr)
&& url.options.iter().any(|o| o == target_port)
}) else {
return Err(ErrorCode::Core_InvalidArgument);
//return Err(ErrorCode::Core_InvalidArgument);
//probably internal ip
return Ok(());
};
*replacement_target = dest;