Skip to content
This repository was archived by the owner on Dec 20, 2021. It is now read-only.

Commit b930f8a

Browse files
committed
Catchup
1 parent 717fd02 commit b930f8a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

vrcpy/objects.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,14 @@ def __init__(self, client, obj=None):
184184
class CurrentUser(User):
185185
objType = "CurrentUser"
186186

187+
def fetch_full(self):
188+
user = LimitedUser.fetch_full(self)
189+
return user
190+
191+
def public_avatars(self):
192+
avatars = LimitedUser.public_avatars(self)
193+
return avatars
194+
187195
def unfriend(self):
188196
raise AttributeError("'CurrentUser' object has no attribute 'unfriend'")
189197

0 commit comments

Comments
 (0)