an experimental irc client

use client.nickname

+1 -1
+1 -1
src/irc.zig
··· 930 930 }; 931 931 932 932 // If the message has our nick, we'll highlight the time 933 - if (std.mem.indexOf(u8, content, self.client.config.nick)) |_| { 933 + if (std.mem.indexOf(u8, content, self.client.nickname())) |_| { 934 934 style.fg = .{ .index = 3 }; 935 935 style.reverse = true; 936 936 }