this repo has no description
13
fork

Configure Feed

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

fix: kitty graphics check

authored by

frehml and committed by
Tim Culverhouse
b20cd902 6d729a2d

+4
+4
src/Vaxis.zig
··· 735 735 medium: Image.TransmitMedium, 736 736 format: Image.TransmitFormat, 737 737 ) !Image { 738 + if (!self.caps.kitty_graphics) return error.NoGraphicsCapability; 739 + 738 740 defer self.next_img_id += 1; 739 741 740 742 const id = self.next_img_id; ··· 788 790 height: u16, 789 791 format: Image.TransmitFormat, 790 792 ) !Image { 793 + if (!self.caps.kitty_graphics) return error.NoGraphicsCapability; 794 + 791 795 defer self.next_img_id += 1; 792 796 const id = self.next_img_id; 793 797