feat(web): Merge configs from all paths

This commit is contained in:
Michael Aaron Murphy 2021-08-16 13:26:52 +02:00
parent 0195939ed8
commit aa17efd34d
3 changed files with 27 additions and 29 deletions

View file

@ -87,7 +87,7 @@ impl App {
let (tx, rx) = flume::unbounded::<ScriptInfo>();
let script_sender = async move {
for path in path_rx.recv_async().await {
while let Ok(path) = path_rx.recv_async().await {
load_from(&path, &path_tx, tx.clone()).await;
}
};