Skip to content

Commit

Permalink
Merge branch 'feat/actions' of https://github.com/hpp2334/ease-music-…
Browse files Browse the repository at this point in the history
…player into feat/actions
  • Loading branch information
hpp2334 committed Mar 8, 2024
2 parents e33a25c + b001b88 commit 47b9b0b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions rust-libs/ease-client-test/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ use std::time::Duration;

use ease_client::modules::timer::to_host::TimerService;
use ease_client::{
build_state_manager, build_view_manager, modules::*, MistyController, MistyResourceId, MistyServiceManager,
RootViewModelState,
build_state_manager, build_view_manager, modules::*, MistyController, MistyResourceId,
MistyServiceManager, RootViewModelState,
};

use fake_player::*;
Expand Down Expand Up @@ -159,6 +159,7 @@ impl TestApp {
let storage_id = self.get_first_storage_id_from_latest_state();
self.call_controller(controller_prepare_import_entries_in_current_playlist, ());
self.call_controller(controller_select_storage_in_import, storage_id);
self.wait_network();
let state = self.latest_state();
let entries = state.current_storage_entries.unwrap();
self.call_controller(controller_select_entry, entries.entries[4].path.clone());
Expand Down
1 change: 1 addition & 0 deletions rust-libs/ease-remote-storage/src/impls/local.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ impl LocalBackend {
is_dir: metadata.is_dir(),
});
}
ret.sort_by(|a, b| a.name.cmp(&b.name));
Ok(ret)
}

Expand Down

0 comments on commit 47b9b0b

Please sign in to comment.