Remora / Remora.Rest

Reusable tooling for interacting with JSON-driven REST APIs
GNU Lesser General Public License v3.0
7 stars 10 forks source link

Fix wrong bitwise operator used in ColorConverter #5

Closed uwx closed 2 years ago

uwx commented 2 years ago

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.

Foxtrek64 commented 2 years ago

Good catch. Lgtm