From 4b4fdc2564ae4f2d316e489614594b970f934ebb Mon Sep 17 00:00:00 2001 From: Julian Schmidhuber Date: Tue, 12 Oct 2021 13:03:34 +0200 Subject: [PATCH] Implement search suggestion --- piped/src/structure.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/piped/src/structure.rs b/piped/src/structure.rs index 220fbfb..5b45910 100644 --- a/piped/src/structure.rs +++ b/piped/src/structure.rs @@ -131,6 +131,8 @@ pub struct Comment { pub struct ChannelSearch { pub items: Vec, pub nextpage: Option, + pub suggestion: Option, + pub corrected: bool, } #[derive(Deserialize, Debug)]