Change 100.to_string() to "100".into()

This commit is contained in:
Sijmen 2023-12-01 04:06:57 +01:00
parent a3f775222f
commit 03f0ea717a
Signed by: vijfhoek
GPG key ID: DAF7821E067D9C48

View file

@ -174,12 +174,7 @@ impl Cri {
.send( .send(
IrcCommand::Raw( IrcCommand::Raw(
"CHATHISTORY".into(), "CHATHISTORY".into(),
vec![ vec!["LATEST".into(), chanlist.into(), "*".into(), "100".into()],
"LATEST".into(),
chanlist.into(),
"*".into(),
100.to_string(),
],
) )
.into(), .into(),
) )