Skip to content

Commit

Permalink
fix very silly upper-lower case thing
Browse files Browse the repository at this point in the history
  • Loading branch information
pickledish committed Dec 20, 2023
1 parent ab40ded commit 7bd201d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/query/influx.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ func (i InfluxClient) BuildInfluxQuery(hostname, includeBots, groupby, bucketby,
query.WriteString(fmt.Sprintf("from \"%s\"", hostname))

query.WriteString(" ")
query.WriteString(fmt.Sprintf("where filetype = 'page'"))
query.WriteString(fmt.Sprintf("where filetype = 'Page'"))

// if includeBots is true, then we want everything -- so no filter
// todo -- isprobablybot is a string ?? should fix that
Expand Down

0 comments on commit 7bd201d

Please sign in to comment.