Trivial change to test out new filtered pipeline

This commit is contained in:
shockrah 2021-02-13 19:00:22 -08:00
parent d2144ef7e9
commit da1b4c3253

View File

@ -40,7 +40,7 @@ impl FromDB<Channel, Integer> for Channel {
if let Ok((_, row)) = result {
return match row {
Some(row) => Response::Row(Channel {
id: id,
id,
name: row.1,
description: row.2,
kind: row.3
@ -109,8 +109,8 @@ impl FromDB<Channel, Integer> for Channel {
let (id, name, desc, k): (UBigInt, VarChar, Option<VarChar>, Integer) =
mysql_async::from_row(row);
Channel {
id: id,
name: name,
id,
name,
description: desc,
kind: k
}
@ -177,10 +177,10 @@ impl Channel {
Ok((_, id_opt)) => {
if let Some(id) = id_opt {
Response::Row(Channel {
id: id,
id,
name: name.into(),
description: Some(desc.into()),
kind: kind
kind
})
}
else { Response::Empty }