diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-08 12:14:51 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-08 12:14:51 -0600 |
commit | 1fbc4cf1f2279cf4cf6804ff02616515e82d2a38 (patch) | |
tree | 0796e390ba5a04e5c46ea9a560809803252fda78 /src/state/models/me.ts | |
parent | e650d98924051abfee40ff956f7348e2e47e7cd7 (diff) | |
download | voidsky-1fbc4cf1f2279cf4cf6804ff02616515e82d2a38.tar.zst |
Finish the upvote/downvote implementation
Diffstat (limited to 'src/state/models/me.ts')
-rw-r--r-- | src/state/models/me.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/models/me.ts b/src/state/models/me.ts index 7a94d63ac..70f45097d 100644 --- a/src/state/models/me.ts +++ b/src/state/models/me.ts @@ -26,7 +26,7 @@ export class MeModel { this.did = sess.data.did || '' this.handle = sess.data.handle const profile = await this.rootStore.api.app.bsky.actor.getProfile({ - user: this.did, + actor: this.did, }) runInAction(() => { if (profile?.data) { |