From a3e066620228ebd6255a411ec05dfb75a44dec10 Mon Sep 17 00:00:00 2001 From: Seth Call Date: Sat, 5 Oct 2024 15:54:20 -0500 Subject: [PATCH] Fix recurly bug where updated 2x from a RJS token 'ruins' the account until the user re-deploys --- ruby/lib/jam_ruby/recurly_client.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ruby/lib/jam_ruby/recurly_client.rb b/ruby/lib/jam_ruby/recurly_client.rb index 41b18c465..659bb65ab 100644 --- a/ruby/lib/jam_ruby/recurly_client.rb +++ b/ruby/lib/jam_ruby/recurly_client.rb @@ -704,7 +704,8 @@ module JamRuby end if !recurly_token.nil? - update_billing_info_from_token(current_user, account, recurly_token) + puts "#{current_user.id} skipping double-update of billing of #{recurly_token} due to 2024 Oct Recurly Bug" + # update_billing_info_from_token(current_user, account, recurly_token) end account end