We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2def5d7 commit 27ad13dCopy full SHA for 27ad13d
src/service/post/post-list-view.ts
@@ -23,7 +23,12 @@ export async function revealPostListItem(
23
if (post === undefined) return
24
25
const view = extTreeViews.visiblePostList()
26
- await view?.reveal(post, options)
+
27
+ try {
28
+ await view?.reveal(post, options)
29
+ } catch (ex) {
30
+ console.log(ex)
31
+ }
32
}
33
34
export function getListState() {
0 commit comments