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

Commit 76b5faf

Browse files
committed
Fix avatar imported key error
1 parent ade633c commit 76b5faf

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

vrcpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__title__ = "vrcpy"
22
__author__ = "Katistic"
3-
__version__ = "0.6.3"
3+
__version__ = "0.6.4"
44

55
from vrcpy.client import Client
66
from vrcpy.client import AClient

vrcpy/objects.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,9 @@ def __init__(self, client, obj):
8282
super().__init__(client)
8383
self.unique += [
8484
"authorId",
85-
"imported",
86-
"version"
85+
"authorName",
86+
"version",
87+
"name"
8788
]
8889

8990
self.arrTypes.update({

0 commit comments

Comments
 (0)