Fix session assignment for WooCommerce
This commit is contained in:
parent
e098d65297
commit
02ecc305fa
1 changed files with 3 additions and 1 deletions
|
@ -714,7 +714,9 @@ routes pipe config = do
|
||||||
ZGoOrder
|
ZGoOrder
|
||||||
Nothing
|
Nothing
|
||||||
(oaddress o)
|
(oaddress o)
|
||||||
("WC-" <> (T.pack . show $ o_id o))
|
(case o_id o of
|
||||||
|
Just o' -> "WC-" <> (T.pack . show $ o')
|
||||||
|
Nothing -> "")
|
||||||
(parseTimeOrError
|
(parseTimeOrError
|
||||||
True
|
True
|
||||||
defaultTimeLocale
|
defaultTimeLocale
|
||||||
|
|
Loading…
Reference in a new issue