diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-03 14:31:12 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-03 14:31:12 -0600 |
commit | 429cc1abf18d4e7d3d065db7243e86498bd0d3e4 (patch) | |
tree | 15c0e4d5e003bc8f133c6ccd170e0d41f9590338 /src | |
parent | 87a824429ce56e03d52b3aac5a1d526cdc2ad047 (diff) | |
download | voidsky-429cc1abf18d4e7d3d065db7243e86498bd0d3e4.tar.zst |
Bump deps to pull in some bugfixes
Diffstat (limited to 'src')
-rw-r--r-- | src/state/models/post-thread-view.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/models/post-thread-view.ts b/src/state/models/post-thread-view.ts index f19335539..1fc188723 100644 --- a/src/state/models/post-thread-view.ts +++ b/src/state/models/post-thread-view.ts @@ -262,7 +262,7 @@ export class PostThreadViewModel { this.hasLoaded = true this.error = err ? err.toString() : '' if (err) { - this.rootStore.log.error('Failed to fetch assertions', err) + this.rootStore.log.error('Failed to fetch post thread', err) } this.notFound = err instanceof GetPostThread.NotFoundError } |