this repo has no description
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

fmt: fix blue formatting

Signed-off-by: Tim Culverhouse <tim@timculverhouse.com>

+2 -2
+1 -1
src/app.zig
··· 1578 1578 while (i < content.len) : (i += 1) { 1579 1579 const b = content[i]; 1580 1580 switch (b) { 1581 - 0x01 => { 1581 + 0x01 => { // https://modern.ircdocs.horse/ctcp 1582 1582 if (i == 0 and 1583 1583 content.len > 7 and 1584 1584 mem.startsWith(u8, content[1..], "ACTION"))
+1 -1
src/irc.zig
··· 842 842 return switch (irc) { 843 843 0 => .default, // white 844 844 1 => .{ .index = 0 }, // black 845 - 2 => .{ .index = 3 }, // blue 845 + 2 => .{ .index = 4 }, // blue 846 846 3 => .{ .index = 2 }, // green 847 847 4 => .{ .index = 1 }, // red 848 848 5 => .{ .index = 3 }, // brown