Skip to content

Commit

Permalink
Update galaktaglare.go
Browse files Browse the repository at this point in the history
  • Loading branch information
simplyYan authored Jan 25, 2024
1 parent 5f79d8d commit f3a6496
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion galaktaglare.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ func getCategories(config *toml.Tree) map[string][]string {
categories := make(map[string][]string)

for _, key := range config.Keys() {
if key.(toml.Key).IsTable() {
if key.IsTable() {

Check failure on line 163 in galaktaglare.go

View workflow job for this annotation

GitHub Actions / build

key.IsTable undefined (type string has no field or method IsTable)
category := key.String()

Check failure on line 164 in galaktaglare.go

View workflow job for this annotation

GitHub Actions / build

key.String undefined (type string has no field or method String)
wordsArray := config.GetArray(category + ".words")
if wordsArray != nil {
Expand Down

0 comments on commit f3a6496

Please sign in to comment.