this repo has no description
13
fork

Configure Feed

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

fix(zig-0.15): use self.alloc instead of self.cmds.allocator in sendNotification

authored by

Simejo and committed by
Tim Culverhouse
3c92fc07 f8b45b39

+1 -1
+1 -1
src/vxfw/vxfw.zig
··· 161 161 maybe_title: ?[]const u8, 162 162 body: []const u8, 163 163 ) Allocator.Error!void { 164 - const alloc = self.cmds.allocator; 164 + const alloc = self.alloc; 165 165 if (maybe_title) |title| { 166 166 return self.addCmd(.{ .notify = .{ 167 167 .title = try alloc.dupe(u8, title),