fix bug preventing stats page from counting custom types (#45)

This commit is contained in:
GenevensiS
2024-05-12 04:00:41 +02:00
committed by GitHub
parent e43fb95077
commit 95205332c5

View File

@@ -791,7 +791,7 @@ face_type_extended_statistic :=
)
split := split_space_statistic(trim(types))
count := length(split)-1
for x from 0 to count do (ifresult := result + "," + split[x])
for x from 0 to count do (result := result + "," + split[x])
result
}