From 271075bbd022225bf8e7e184bd4ab34b3da89030 Mon Sep 17 00:00:00 2001 From: Rexios Date: Mon, 5 May 2025 15:02:52 -0400 Subject: [PATCH] Remove currentAvatarAssetUrl from streaming docs --- content/tutorials/websocket.markdown | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/content/tutorials/websocket.markdown b/content/tutorials/websocket.markdown index aef5a05..6802384 100644 --- a/content/tutorials/websocket.markdown +++ b/content/tutorials/websocket.markdown @@ -324,7 +324,7 @@ A "`friend-location`" event is sent when one of the user's friends has changed i User events are relating to the current user logged in. #### user-update -A "`user-update`" event is sent when something regarding the user has been updated. Note that the "`user`" object is **not** a LimitedUser object, even though it has similarities. It's missing `developerType`, `friendKey`, `isFriend`, `last_platform` and `location`. It also has extra `currentAvatar` and `currentAvatarAssetUrl` fields. +A "`user-update`" event is sent when something regarding the user has been updated. Note that the "`user`" object is **not** a LimitedUser object, even though it has similarities. It's missing `developerType`, `friendKey`, `isFriend`, `last_platform` and `location`. It also has an extra `currentAvatar` field. ```json { @@ -334,7 +334,6 @@ A "`user-update`" event is sent when something regarding the user has been updat "user": { "bio": ":bioString", "currentAvatar": ":avatarId", - "currentAvatarAssetUrl": ":assetUrl", "currentAvatarImageUrl": ":assetUrl", "currentAvatarThumbnailImageUrl": ":assetUrl", "displayName": ":displayName",