Back
Remote OK
Load previous page…
fix auto bump stopped charging because Stripe API changed something again, you can’t charge a stripe_customer_id anymore, you have to create a PaymentIntent by retrieving the PaymentMethod from the Customer object, with the payment_intent_id you save and set as off_session for later payments during Stripe Checkout (maximum difficult and yes Stripe is absolutely losing it by rapidly deprecating old functionality and actively breaking payment integrations causing companies to lose revenue)
#remoteok
don’t close job in autoCloseJobs.php if auto_bump=1, and in case card fails in autoBumpJobsThatAreSetToAutoBumpAndChargeThem.php set job as closed=1 so auto bumped jobs close in case of a card fails, then after they update card it can retry it with autoBumpJobsThatAreSetToAutoBumpAndChargeThem.php?action==‘retry_bump_after_updating_card’ which sets closed=0 after renewing
#remoteok
fix TopTal jobs did not auto renew because the new autoCloseJobs.php bot sets jobs to closed=1 in 30 days after posting or last renewal, and the autoBumpJobsThatAreSetToAutoBumpAndChargeThem.php bot does not renew jobs that are set to closed=1 because it expects them to have been closed by a human (as that was the case before the autoCloseJobs.php existed)
#remoteok