diff options
author | Puyodead1 <puyodead@proton.me> | 2022-12-24 16:24:58 -0500 |
---|---|---|
committer | Puyodead1 <puyodead@proton.me> | 2023-03-18 19:28:45 -0400 |
commit | 6d6944cfee4af656c6386c7a44efc6b99bdfd6ed (patch) | |
tree | 72ed39ba329e7cbd894ddcc0fabdcbdf636ef4a6 /src/util/dtos | |
parent | Fix connection update visibilty dying when given boolean (diff) | |
download | server-6d6944cfee4af656c6386c7a44efc6b99bdfd6ed.tar.xz |
Add Twitch, error handling, revokation changes, etc
Diffstat (limited to 'src/util/dtos')
-rw-r--r-- | src/util/dtos/ConnectedAccountDTO.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/dtos/ConnectedAccountDTO.ts b/src/util/dtos/ConnectedAccountDTO.ts index ca15ff41..a3618fd1 100644 --- a/src/util/dtos/ConnectedAccountDTO.ts +++ b/src/util/dtos/ConnectedAccountDTO.ts @@ -7,7 +7,7 @@ export class ConnectedAccountDTO { friend_sync?: boolean; name: string; revoked?: boolean; - show_activity?: boolean; + show_activity?: number; type: string; verified?: boolean; visibility?: number; |