fix coupon tracking method name

This commit is contained in:
Rebecca Scott 2020-03-26 11:09:37 +10:00
parent 768a3a3f4f
commit db6a4c630f
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ class WC_Coupon_Tracking {
* Init
*/
public function init() {
add_action( 'woocommerce_coupon_object_updated_props', array( $this, 'track_coupon_created' ), 10, 3 );
add_action( 'woocommerce_coupon_object_updated_props', array( $this, 'track_coupon_updated' ), 10, 3 );
}
/**