Skip to content

Commit

Permalink
Fix error stringification.
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Mäder <t.s.maeder@gmail.com>
  • Loading branch information
tsmaeder committed Jul 11, 2024
1 parent 5b86871 commit 343d51c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vsx-registry/src/browser/vsx-extensions-model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ export class VSXExtensionsModel {
}
}
} catch (error) {
this._searchError = error;
this._searchError = err?.message || String(err);

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Smoke Test for Browser Example Production Build on ubuntu-latest with Node.js 18.x

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Smoke Test for Browser Example Production Build on ubuntu-latest with Node.js 18.x

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Playwright Tests (ubuntu-latest, Node.js 18.x)

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Playwright Tests (ubuntu-latest, Node.js 18.x)

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Lint

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Lint

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Build and Test (windows-2019, node-16.x)

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Build and Test (windows-2019, node-16.x)

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Build and Test (windows-2019, node-18.x)

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Build and Test (windows-2019, node-18.x)

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Build and Test (windows-2019, node-20.x)

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Build and Test (windows-2019, node-20.x)

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest, node-16.x)

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest, node-16.x)

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest, node-18.x)

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest, node-18.x)

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest, node-20.x)

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest, node-20.x)

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Build and Test (macos-14, node-16.x)

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Build and Test (macos-14, node-16.x)

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Build and Test (macos-14, node-18.x)

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Build and Test (macos-14, node-18.x)

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Build and Test (macos-14, node-20.x)

Cannot find name 'err'.

Check failure on line 262 in packages/vsx-registry/src/browser/vsx-extensions-model.ts

View workflow job for this annotation

GitHub Actions / Build and Test (macos-14, node-20.x)

Cannot find name 'err'.
}

}, token);
Expand Down

0 comments on commit 343d51c

Please sign in to comment.