Skip to content

Commit

Permalink
Add ItemProperties to items
Browse files Browse the repository at this point in the history
  • Loading branch information
n2pro committed Jan 19, 2018
1 parent c53e3ff commit e099722
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ private void Parse(NameValueCollection queryString)

SortBy = queryString.Get("sort_by");

ResponseGroup = EnumUtility.SafeParse(queryString.Get("resp_group"), ItemResponseGroup.ItemSmall | ItemResponseGroup.ItemWithPrices | ItemResponseGroup.Inventory | ItemResponseGroup.ItemWithDiscounts | ItemResponseGroup.ItemWithVendor);
ResponseGroup = EnumUtility.SafeParse(queryString.Get("resp_group"), ItemResponseGroup.ItemSmall | ItemResponseGroup.ItemWithPrices | ItemResponseGroup.Inventory | ItemResponseGroup.ItemWithDiscounts | ItemResponseGroup.ItemWithVendor | ItemResponseGroup.ItemProperties);
// terms=name1:value1,value2,value3;name2:value1,value2,value3
Terms = (queryString.GetValues("terms") ?? new string[0])
.SelectMany(s => s.Split(';'))
Expand Down

0 comments on commit e099722

Please sign in to comment.