improv(files): Limit to 20 sorted results

This commit is contained in:
Michael Aaron Murphy 2021-08-18 13:59:13 +02:00
parent 9c69310e09
commit 4a45257472

View file

@ -178,6 +178,10 @@ impl App {
}),
)
.await;
if id == 19 {
break
}
}
crate::send(&mut self.out, PluginResponse::Finished).await;