We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd555f2 commit f816572Copy full SHA for f816572
server/parser.go
@@ -53,6 +53,8 @@ func validateDAT(data []byte) (int, error) {
53
lineno := 0
54
cols := 0
55
isEmpty := true
56
+ // Skip first line
57
+ scanner.Scan()
58
for scanner.Scan() {
59
lineno++
60
line := scanner.Text()
0 commit comments