Skip to content

Commit

Permalink
ECWID-116234 Implement alt-text support for all category images | Cod…
Browse files Browse the repository at this point in the history
…e clean
  • Loading branch information
ZimuZhengLightspeed committed Jan 24, 2024
1 parent cff9084 commit 185bac3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ data class SubscriptionsSearchRequest(
orderTotal?.let { put("orderTotal", it.toString()) }
orderCreatedFrom?.let { put("orderCreatedFrom", TimeUnit.MILLISECONDS.toSeconds(it.time).toString()) }
orderCreatedTo?.let { put("orderCreatedTo", TimeUnit.MILLISECONDS.toSeconds(it.time).toString()) }
offset.let { put("offset", it.toString()) }
limit.let { put("limit", it.toString()) }
offset?.let { put("offset", it.toString()) }
limit?.let { put("limit", it.toString()) }
put("sortBy", sortBy.name)
lang?.let { put("lang", it) }
}.toMap()
Expand Down

0 comments on commit 185bac3

Please sign in to comment.