summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2025-08-16 14:37:45 +0300
committerGravatar Uko Kokņevičs2025-08-16 14:42:48 +0300
commit8f02ccc83c62152bcc2a369120736ba6bcb97ab9 (patch)
treefd4acf9a025862e9330e80b24f1b42d4902d8666
parentAdd some new stuff to types (diff)
downloadukkobot-8f02ccc83c62152bcc2a369120736ba6bcb97ab9.tar.gz
ukkobot-8f02ccc83c62152bcc2a369120736ba6bcb97ab9.tar.xz
ukkobot-8f02ccc83c62152bcc2a369120736ba6bcb97ab9.zip
Fix ChatBoostSource
-rw-r--r--src/types/chat_boost_source.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types/chat_boost_source.zig b/src/types/chat_boost_source.zig
index ead19a0..e8e797f 100644
--- a/src/types/chat_boost_source.zig
+++ b/src/types/chat_boost_source.zig
@@ -16,5 +16,5 @@ pub const ChatBoostSource = union(enum) {
16 }, 16 },
17 17
18 pub const jsonParse = json.makeJsonParse(ChatBoostSource); 18 pub const jsonParse = json.makeJsonParse(ChatBoostSource);
19 pub const jsonParseFromValue = json.makeJsonParseFromValue(ChatBoostSource); 19 pub const jsonParseFromValue = json.makeJsonParseFromValueWithTag(ChatBoostSource, "source");
20}; 20};