Skip to content

Commit a9b4b9b

Browse files
committed
fix rate limit issue
1 parent a433448 commit a9b4b9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ impl App {
9090
// Update state with current playing
9191
self.now_playing = now_playing;
9292
terminal.draw(|frame| self.render_frame(frame)).unwrap();
93-
std::thread::sleep(Duration::from_millis(500));
93+
std::thread::sleep(Duration::from_millis(2000));
9494
}
9595
}
9696

0 commit comments

Comments
 (0)