fix pro_audio
This commit is contained in:
parent
0ce953280a
commit
67d0a3858c
|
|
@ -111,6 +111,8 @@ ALTER TABLE users ADD COLUMN subscription_trial_ends_at TIMESTAMP NOT NULL DEFAU
|
|||
ALTER TABLE users ADD COLUMN subscription_plan_reason varchar(20);
|
||||
UPDATE users set subscription_trial_ends_at = (CURRENT_TIMESTAMP + '30 days'::interval), subscription_plan_code = 'jamsubgold';
|
||||
|
||||
UPDATE users set stored_credit_card = true where recurly_code is not null;
|
||||
|
||||
|
||||
-- CREATE TABLE subscriptions (
|
||||
-- id VARCHAR(64) PRIMARY KEY DEFAULT uuid_generate_v4(),
|
||||
|
|
|
|||
|
|
@ -839,6 +839,7 @@ message SiteSubscription {
|
|||
optional bool can_broadcast = 9;
|
||||
optional int32 broadcasting_type = 10;
|
||||
optional int32 max_players = 11;
|
||||
optional bool pro_audio = 12;
|
||||
}
|
||||
|
||||
message Ars {
|
||||
|
|
|
|||
|
|
@ -448,7 +448,9 @@ profileUtils = context.JK.ProfileUtils
|
|||
@elements = window.recurly.Elements()
|
||||
|
||||
delayedConfigure: () ->
|
||||
if !window.recurly?
|
||||
if gon.isNativeClient
|
||||
return
|
||||
if !window.recurly?
|
||||
console.log("relaunch delayed recurly configure")
|
||||
setTimeout(() =>
|
||||
@delayedConfigure()
|
||||
|
|
|
|||
Loading…
Reference in New Issue