tangled
alpha
login
or
join now
rockorager.dev
/
comlink
2
fork
atom
an experimental irc client
2
fork
atom
overview
issues
pulls
pipelines
use client.nickname
rockorager.dev
1 year ago
0969c3a7
819110df
+1
-1
1 changed file
expand all
collapse all
unified
split
src
irc.zig
+1
-1
src/irc.zig
···
930
930
};
931
931
932
932
// If the message has our nick, we'll highlight the time
933
933
-
if (std.mem.indexOf(u8, content, self.client.config.nick)) |_| {
933
933
+
if (std.mem.indexOf(u8, content, self.client.nickname())) |_| {
934
934
style.fg = .{ .index = 3 };
935
935
style.reverse = true;
936
936
}