mirror of
				https://github.com/juspay/hyperswitch.git
				synced 2025-10-31 18:17:13 +08:00 
			
		
		
		
	fix(netcetera): handle non-ascii characters for cardholdername, error message and send missing fields (#4755)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
		 Sai Harsha Vardhan
					Sai Harsha Vardhan
				
			
				
					committed by
					
						 GitHub
						GitHub
					
				
			
			
				
	
			
			
			 GitHub
						GitHub
					
				
			
						parent
						
							61e67e4272
						
					
				
				
					commit
					5d1900e1d9
				
			| @ -141,7 +141,10 @@ pub async fn update_trackers<F: Clone, Req>( | ||||
|         Err(error) => storage::AuthenticationUpdate::ErrorUpdate { | ||||
|             connector_authentication_id: error.connector_transaction_id, | ||||
|             authentication_status: common_enums::AuthenticationStatus::Failed, | ||||
|             error_message: Some(error.message), | ||||
|             error_message: error | ||||
|                 .reason | ||||
|                 .map(|reason| format!("message: {}, reason: {}", error.message, reason)) | ||||
|                 .or(Some(error.message)), | ||||
|             error_code: Some(error.code), | ||||
|         }, | ||||
|     }; | ||||
|  | ||||
		Reference in New Issue
	
	Block a user