@lvce-editor/problems-view 1.31.1 → 1.31.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2815,7 +2815,11 @@ const getActiveUri = async () => {
2815
2815
  if (editorId === -1) {
2816
2816
  return '';
2817
2817
  }
2818
- return getUri(editorId);
2818
+ try {
2819
+ return await getUri(editorId);
2820
+ } catch {
2821
+ return '';
2822
+ }
2819
2823
  };
2820
2824
 
2821
2825
  const isString = value => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/problems-view",
3
- "version": "1.31.1",
3
+ "version": "1.31.2",
4
4
  "description": "Problems View Worker",
5
5
  "repository": {
6
6
  "type": "git",