Mirror of
0
fork

Configure Feed

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

fix: reset MemoryStream position

+2 -1
+2 -1
app/ReleaseImageGenerator.Domain/Implementations/ImageGenerator.cs
··· 52 52 _ => SKEncodedImageFormat.Png 53 53 }, 100); 54 54 data.SaveTo(stream); 55 + stream.Position = 0; 55 56 return stream; 56 57 } 57 - } 58 + }