aboutsummaryrefslogtreecommitdiffhomepage
path: root/td/telegram/ThemeManager.cpp
diff options
context:
space:
mode:
authorlevlam <levlam@telegram.org>2022-08-10 19:32:07 +0300
committerlevlam <levlam@telegram.org>2022-08-10 19:32:07 +0300
commit9c7bdb2810e7ef7e4bcc792cfe0acd29776cc411 (patch)
tree0db5c0eea08f726b075fad2ff4f54b8e3fdd2b11 /td/telegram/ThemeManager.cpp
parent4754f3680890ecf3339096cde48317d8495aad49 (diff)
Fix payment form and web view color value sent to the server.
Diffstat (limited to 'td/telegram/ThemeManager.cpp')
-rw-r--r--td/telegram/ThemeManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/td/telegram/ThemeManager.cpp b/td/telegram/ThemeManager.cpp
index 0007b3de4..d7aa86317 100644
--- a/td/telegram/ThemeManager.cpp
+++ b/td/telegram/ThemeManager.cpp
@@ -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 <>