Fix not properly saving access_token_expiry value

This commit is contained in:
2025-10-25 21:23:55 -05:00
parent 5a3f350015
commit ce10cdc658

View File

@@ -24,8 +24,9 @@ class W3DHub
def to_json(env)
d = @data.dup
d[:avatar_uri] = @avatar_uri
d[:access_token_expiry] = d[:access_token_expiry].to_i
d[:access_token_expiry] = @access_token_expiry.to_i
d.to_json(env)
end