This PR fixes an operation in ColorConverter.Read to convert an integer from RGB to ARGB (copying the color and setting the alpha channel to 255) which mistakenly uses a XOR operator, albeit coincidentally valid, instead of an OR. Although it doesn't cause issues with Discord's current API model, it could fail with larger values.
This PR fixes an operation in ColorConverter.Read to convert an integer from RGB to ARGB (copying the color and setting the alpha channel to 255) which mistakenly uses a XOR operator, albeit coincidentally valid, instead of an OR. Although it doesn't cause issues with Discord's current API model, it could fail with larger values.