mirror of
				https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
				synced 2025-11-04 16:23:41 +08:00 
			
		
		
		
	update
This commit is contained in:
		@@ -119,7 +119,9 @@ pub async fn stream_fetch(
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
    Err(err) => {
 | 
			
		||||
      let error: String = err.source().expect("REASON").to_string();
 | 
			
		||||
      let error: String = err.source()
 | 
			
		||||
        .map(|e| e.to_string())
 | 
			
		||||
        .unwrap_or_else(|| "Unknown error occurred".to_string());
 | 
			
		||||
      println!("Error response: {:?}", error);
 | 
			
		||||
      tauri::async_runtime::spawn( async move {
 | 
			
		||||
        if let Err(e) = window.emit(event_name, ChunkPayload{ request_id, chunk: error.into() }) {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user