This commit is contained in:
blackbeard420 2023-12-28 17:11:50 -05:00
parent 61135c2804
commit 7531feed1b
Signed by: blackbeard420
GPG Key ID: 88C719E09CDDA4A5

View File

@ -39,7 +39,7 @@ async fn main() -> Result<(), failure::Error> {
let output = String::from_utf8_lossy(&out.stdout); let output = String::from_utf8_lossy(&out.stdout);
let lines = output.split("\n"); let lines = output.lines();
for l in lines { for l in lines {
sender.send_privmsg(target, l)?; sender.send_privmsg(target, l)?;