diff options
author | Eric Bailey <git@esb.lol> | 2023-11-04 12:58:50 -0500 |
---|---|---|
committer | Eric Bailey <git@esb.lol> | 2023-11-04 12:58:50 -0500 |
commit | 7e29ebbadbf6246a664a2bf45b3798b3ecd87955 (patch) | |
tree | 4808764811049c27748112cdfa575abeef8fb948 /src/state/models/content/profile.ts | |
parent | df0dcf32f99631c52b039c7f1934481924d37465 (diff) | |
download | voidsky-7e29ebbadbf6246a664a2bf45b3798b3ecd87955.tar.zst |
Fix other error logs while I'm at it
Diffstat (limited to 'src/state/models/content/profile.ts')
-rw-r--r-- | src/state/models/content/profile.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/models/content/profile.ts b/src/state/models/content/profile.ts index 5333e7116..0050970e6 100644 --- a/src/state/models/content/profile.ts +++ b/src/state/models/content/profile.ts @@ -235,7 +235,7 @@ export class ProfileModel { this.hasLoaded = true this.error = cleanError(err) if (err) { - this.rootStore.log.error('Failed to fetch profile', err) + this.rootStore.log.error('Failed to fetch profile', {error: err}) } } |