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

Commit 1038934

Browse files
committed
Change default offline kwargs from true to false
1 parent 2b9cd72 commit 1038934

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vrcpy/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def fetch_me(self):
4141
self.me = objects.CurrentUser(self, resp["data"])
4242
return self.me
4343

44-
def fetch_full_friends(self, offline=True, n=0, offset=0):
44+
def fetch_full_friends(self, offline=False, n=0, offset=0):
4545
'''
4646
Used to get friends of current user
4747
!! This function uses possibly lot of calls, use with caution
@@ -393,7 +393,7 @@ async def fetch_me(self):
393393
self.me = aobjects.CurrentUser(self, resp["data"])
394394
return self.me
395395

396-
async def fetch_full_friends(self, offline=True, n=0, offset=0):
396+
async def fetch_full_friends(self, offline=False, n=0, offset=0):
397397
'''
398398
Used to get friends of current user
399399
!! This function uses possibly lot of calls, use with caution

0 commit comments

Comments
 (0)