From df10c2cf63f4a3f56af6ac2aa1ca6ce0edab060c Mon Sep 17 00:00:00 2001 From: krolxon Date: Wed, 19 Jun 2024 10:42:52 +0530 Subject: fix #9 --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/app.rs') diff --git a/src/app.rs b/src/app.rs index 0341fbe..3338a1f 100755 --- a/src/app.rs +++ b/src/app.rs @@ -142,8 +142,8 @@ impl App { pub fn get_append_list(conn: &mut Client) -> AppResult> { let mut list = ContentList::new(); - list.list.push("New Playlist".to_string()); list.list.push("Current Playlist".to_string()); + list.list.push("New Playlist".to_string()); for item in Self::get_playlist(conn)? { list.list.push(item.to_string()); } -- cgit v1.2.3