(mac) convert SSL errors to utf8
This commit is contained in:
		@@ -1,6 +1,10 @@
 | 
				
			|||||||
# Changelog
 | 
					# Changelog
 | 
				
			||||||
All notable changes to this project will be documented in this file.
 | 
					All notable changes to this project will be documented in this file.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## [7.5.1] - 2019-12-06
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					(mac) convert SSL errors to utf8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## [7.5.0] - 2019-12-05
 | 
					## [7.5.0] - 2019-12-05
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- (ws) cobra to sentry. Handle Error 429 Too Many Requests and politely wait before sending more data to sentry.
 | 
					- (ws) cobra to sentry. Handle Error 429 Too Many Requests and politely wait before sending more data to sentry.
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -118,7 +118,7 @@ namespace
 | 
				
			|||||||
                char localBuffer[128];
 | 
					                char localBuffer[128];
 | 
				
			||||||
                Boolean success;
 | 
					                Boolean success;
 | 
				
			||||||
                success =
 | 
					                success =
 | 
				
			||||||
                    CFStringGetCString(message, localBuffer, 128, CFStringGetSystemEncoding());
 | 
					                    CFStringGetCString(message, localBuffer, 128, kCFStringEncodingUTF8);
 | 
				
			||||||
                if (success)
 | 
					                if (success)
 | 
				
			||||||
                {
 | 
					                {
 | 
				
			||||||
                    errMsg = localBuffer;
 | 
					                    errMsg = localBuffer;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,4 +6,4 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#pragma once
 | 
					#pragma once
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define IX_WEBSOCKET_VERSION "7.5.0"
 | 
					#define IX_WEBSOCKET_VERSION "7.5.1"
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user