1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00

fix for response

This commit is contained in:
Pavel 2020-05-27 15:23:28 +03:00
parent 51dd47a89f
commit 41ed8f4f33

View file

@ -142,7 +142,7 @@ if ( ! class_exists( 'WC_Retailcrm_Proxy' ) ) :
WC_Retailcrm_Logger::add(sprintf("[%s] %s - %s", $called, $exception->getMessage(), $result));
}
return !empty($response) ?: new WC_Retailcrm_Response(900, '{}');
return !empty($response) ? $response : new WC_Retailcrm_Response(900, '{}');
}
}
endif;