Fix payment form and web view color value sent to the server.

This commit is contained in:
levlam 2022-08-10 19:32:07 +03:00
parent 4754f36808
commit 9c7bdb2810

View File

@ -247,7 +247,7 @@ static auto get_color_json(int32 color);
template <>
auto get_color_json<false>(int32 color) {
return static_cast<int64>(static_cast<uint32>(color) | 0x000000FF);
return static_cast<int64>(static_cast<uint32>(color) | 0xFF000000);
}
template <>