Skip to content

Commit fc1e00e

Browse files
committed
Keywords are comma-separated strings
1 parent 66ef08a commit fc1e00e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ type App struct {
1616
Paid *int `json:"paid,omitempty"` // "1": Paid, "2": Free
1717
Publisher *Publisher `json:"publisher,omitempty"`
1818
// Content Content
19-
Keywords []string `json:"keywords,omitempty"`
19+
Keywords *string `json:"keywords,omitempty"`
2020
Storeurl *string `json:"storeurl,omitempty"` // App store URL for an installed app
2121
Ext Extensions `json:"ext,omitempty"`
2222
}

site.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type Site struct {
1515
Search *string `json:"search,omitempty"` // Search string that caused naviation
1616
Publisher *Publisher `json:"publisher,omitempty"`
1717
// Content Content
18-
Keywords []string `json:"keywords,omitempty"`
18+
Keywords *string `json:"keywords,omitempty"`
1919
Ext Extensions `json:"ext,omitempty"`
2020
}
2121

0 commit comments

Comments
 (0)