From ce10cdc65868705426e14bd80b6d619ed5db9609 Mon Sep 17 00:00:00 2001 From: Cyberarm Date: Sat, 25 Oct 2025 21:23:55 -0500 Subject: [PATCH] Fix not properly saving access_token_expiry value --- lib/api/account.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/api/account.rb b/lib/api/account.rb index 740d1c2..53e85d2 100644 --- a/lib/api/account.rb +++ b/lib/api/account.rb @@ -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