Merge pull request #19971 from woocommerce/fix/19964
Fix: WC API should not try to create a product image if an empty image is passed
This commit is contained in:
commit
ccededa35c
|
@ -290,7 +290,7 @@ class WC_REST_Product_Variations_Controller extends WC_REST_Products_Controller
|
||||||
|
|
||||||
// Thumbnail.
|
// Thumbnail.
|
||||||
if ( isset( $request['image'] ) ) {
|
if ( isset( $request['image'] ) ) {
|
||||||
if ( is_array( $request['image'] ) ) {
|
if ( is_array( $request['image'] ) && ! empty( $request['image'] ) ) {
|
||||||
$image = $request['image'];
|
$image = $request['image'];
|
||||||
if ( is_array( $image ) ) {
|
if ( is_array( $image ) ) {
|
||||||
$image['position'] = 0;
|
$image['position'] = 0;
|
||||||
|
|
Loading…
Reference in New Issue