We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e77b776 commit ccff0cdCopy full SHA for ccff0cd
parsers/room/pcs-stats.js
@@ -40,7 +40,7 @@ function parser(log, head) {
40
parsedData.country = getMatchSimpleValue(log, /(country [A-Z-]+)/);
41
parsedData.pcType = getMatchSimpleValue(log, /(pcType [a-zA-Z-]+)/);
42
parsedData.pcState = getMatchSimpleValue(log, /(pcState [a-zA-Z-]+)/);
43
- parsedData.retriedTimes = getMatchSimpleValue(log, /(retriedTimes [0-9]+)/);
+ parsedData.retriedTimes = Number(getMatchSimpleValue(log, /(retriedTimes [0-9]+)/));
44
parsedData.iceState = getMatchSimpleValue(log, /(iceState [a-zA-Z-]+)/);
45
parsedData.profileKey = getMatchSimpleValue(log, /(profileKey [a-zA-Z-]+)/);
46
0 commit comments