File tree 2 files changed +17
-20
lines changed
2 files changed +17
-20
lines changed Original file line number Diff line number Diff line change @@ -30,15 +30,15 @@ fn run(args: &Args) -> Result<()> {
30
30
let query = args. query . join ( " " ) ;
31
31
let mut packs = search ( & query, args. episode ) ?;
32
32
33
- if packs. is_empty ( ) {
34
- return Err ( anyhow ! ( "No results" ) ) ;
35
- }
36
-
37
33
if args. resolution != 0 {
38
34
let res = format ! ( "{}p" , args. resolution) ;
39
35
packs. retain ( |p| p. name . contains ( & res) ) ;
40
36
}
41
37
38
+ if packs. is_empty ( ) {
39
+ return Err ( anyhow ! ( "No results" ) ) ;
40
+ }
41
+
42
42
println ! ( "\x1b [;1mAvailable packs:\x1b [0m" ) ;
43
43
for ( i, pack) in packs. iter ( ) . enumerate ( ) {
44
44
println ! (
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ pub struct Pack {
27
27
static PING_RE : SyncLazy < Regex > = SyncLazy :: new ( || Regex :: new ( r#"^(?:\S+ )?PING (\S+)"# ) . unwrap ( ) ) ;
28
28
static MODE_RE : SyncLazy < Regex > = SyncLazy :: new ( || Regex :: new ( r#"^(?:\S+ )?MODE"# ) . unwrap ( ) ) ;
29
29
static DCC_RE : SyncLazy < Regex > = SyncLazy :: new ( || {
30
- Regex :: new ( r#"^:( \S+)!.+ PRIVMSG.*(?:DCC|dcc) (?:SEND|send) "?(.*?)"? (\d+) (\d+) (\d+)"# )
30
+ Regex :: new ( r#"^(?: \S+ )? PRIVMSG.*(?:DCC|dcc) (?:SEND|send) "?(.*?)"? (\d+) (\d+) (\d+)"# )
31
31
. unwrap ( )
32
32
} ) ;
33
33
@@ -103,21 +103,18 @@ fn handle_message(
103
103
println ! ( "Waiting for DCC connection..." ) ;
104
104
} else if DCC_RE . is_match ( message) {
105
105
let caps = DCC_RE . captures ( message) . unwrap ( ) ;
106
- let botname = & caps[ 1 ] ;
107
- let filename = & caps[ 2 ] ;
108
- let ip = & caps[ 3 ] ;
109
- let port = & caps[ 4 ] ;
110
- let size = & caps[ 5 ] ;
111
-
112
- if botname == bot {
113
- let dcc = Dcc :: new (
114
- filename. to_owned ( ) ,
115
- & format ! ( "{}:{}" , ip, port) ,
116
- size. parse ( ) . unwrap ( ) ,
117
- ) ?;
118
-
119
- return Ok ( Some ( dcc) ) ;
120
- }
106
+ let filename = & caps[ 1 ] ;
107
+ let ip = & caps[ 2 ] ;
108
+ let port = & caps[ 3 ] ;
109
+ let size = & caps[ 4 ] ;
110
+
111
+ let dcc = Dcc :: new (
112
+ filename. to_owned ( ) ,
113
+ & format ! ( "{}:{}" , ip, port) ,
114
+ size. parse ( ) . unwrap ( ) ,
115
+ ) ?;
116
+
117
+ return Ok ( Some ( dcc) ) ;
121
118
}
122
119
123
120
Ok ( None )
You can’t perform that action at this time.
0 commit comments