tangled
alpha
login
or
join now
rockorager.dev
/
comlink
2
fork
atom
an experimental irc client
2
fork
atom
overview
issues
pulls
pipelines
irc: don't send TAGMSG if message-tags is not supported
rockorager.dev
1 year ago
704e636c
17687522
verified
This commit was signed with the committer's
known signature
.
rockorager.dev
SSH Key Fingerprint:
SHA256:qn/Fjy7CpbcogGEPB14Y53hLnQleZNFY9lkQnuudFLs=
+1
1 changed file
expand all
collapse all
unified
split
src
irc.zig
+1
src/irc.zig
···
334
334
335
335
fn onChange(ptr: ?*anyopaque, _: *vxfw.EventContext, input: []const u8) anyerror!void {
336
336
const self: *Channel = @ptrCast(@alignCast(ptr orelse unreachable));
337
337
+
if (!self.client.caps.@"message-tags") return;
337
338
if (std.mem.startsWith(u8, input, "/")) {
338
339
return;
339
340
}