forked from spacebar/rust-nex
remove accidentally writing vim action into file
This commit is contained in:
parent
e5c741a8d6
commit
1da5f09bc8
2 changed files with 4 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue