Skip to content

Commit

Permalink
bugfix woo shop-url
Browse files Browse the repository at this point in the history
  • Loading branch information
awb99 committed Dec 26, 2024
1 parent 7fddf69 commit 9319614
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rest/src/rest/provider/woo.clj
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"this needs to be a map with :shop-url :consumer-key :consumer-secret"
[this]
(assert (map? this) "this needs to be a map")
(assert (:show-url this) "the woo map needs to have :shop-url")
(assert (:shop-url this) "the woo map needs to have :shop-url")
(assert (:consumer-key this) "the woo map needs to have :consumer-key")
(assert (:consumer-secret this) "the woo map needs to have :consumer-secret")
(let [m (martian-http/bootstrap (base-url this) endpoints (interceptors this))]
Expand Down

0 comments on commit 9319614

Please sign in to comment.