this repo has no description
3
fork

Configure Feed

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

fix: proper operator for debug mode

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

+1 -1
+1 -1
src/app.zig
··· 138 138 for (self.clients.items, 0..) |_, i| { 139 139 var client = self.clients.items[i]; 140 140 client.deinit(); 141 - if (builtin.mode != .Debug) { 141 + if (builtin.mode == .Debug) { 142 142 // We only clean up clients in Debug mode so we can check for memory leaks 143 143 // without failing for this. We don't care about it in any other mode since we 144 144 // are exiting anyways and we want to do it fast. If we destroy, our readthread