From 1db7d10db58aceb42f9b4bdf2af78b3749789312 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Skorupski?= Date: Mon, 23 Feb 2026 15:55:52 +0100 Subject: [PATCH] FIX examples containing `UserWallActive` as `boolean` instead of `int` (see also: https://github.com/RetroAchievements/RAWeb/pull/4392) --- docs/v1/get-user-profile.md | 4 ++-- docs/v1/get-user-summary.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/v1/get-user-profile.md b/docs/v1/get-user-profile.md index 2f502a0..3eed9eb 100644 --- a/docs/v1/get-user-profile.md +++ b/docs/v1/get-user-profile.md @@ -89,7 +89,7 @@ if (response is NetworkResponse.Success) { "Permissions": 1, "Untracked": 0, "ID": 16446, - "UserWallActive": true, + "UserWallActive": 1, "Motto": "Join me on Twitch! GameSquadSquad for live RA" } ``` @@ -110,7 +110,7 @@ if (response is NetworkResponse.Success) { "permissions": 1, "untracked": false, "id": 16446, - "userWallActive": true, + "userWallActive": 1, "motto": "Join me on Twitch! GameSquadSquad for live RA" } ``` diff --git a/docs/v1/get-user-summary.md b/docs/v1/get-user-summary.md index cbc72ec..d14379c 100644 --- a/docs/v1/get-user-summary.md +++ b/docs/v1/get-user-summary.md @@ -215,7 +215,7 @@ if (response is NetworkResponse.Success) { "permissions": 1, "untracked": false, "id": 224958, - "userWallActive": true, + "userWallActive": 1, "motto": "", "rank": 4616, "recentlyPlayedCount": 1,