app_async: fix print random question
This commit is contained in:
		@@ -154,7 +154,7 @@ async fn read_from_db(id: u32) -> Option<Question> {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    let len = reader.len();
 | 
					    let len = reader.len();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    let index = if len == 0 {
 | 
					    let index = if id == 0 {
 | 
				
			||||||
        let mut rng = thread_rng();
 | 
					        let mut rng = thread_rng();
 | 
				
			||||||
        let questions = Uniform::new(0, len);
 | 
					        let questions = Uniform::new(0, len);
 | 
				
			||||||
        rng.sample(questions)
 | 
					        rng.sample(questions)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user