this repo has no description
0
fork

Configure Feed

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

fix: whitespaces before value in metadata

Altagos b2983bf5 0ed75d27

+1 -1
+1 -1
src/austin.zig
··· 117 117 MetadataFields, 118 118 it.next() orelse return error.MissingKey, 119 119 ) orelse return error.UnknownMetadataField; 120 - const value = it.next() orelse return error.MissingValue; 120 + const value = mem.trimStart(u8, it.next() orelse return error.MissingValue, " "); 121 121 122 122 switch (key) { 123 123 .austin => profile.meta.austin = try .parse(value),