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 85632c6 commit d3888feCopy full SHA for d3888fe
manifest.json
@@ -1,7 +1,7 @@
1
{
2
"id": "bks-ai-shell",
3
"name": "AI Shell",
4
- "version": "1.3.1",
+ "version": "1.3.2",
5
"minAppVersion": "5",
6
"description": "Ask AI to analyze your database and generate SQL queries.",
7
"author": {
src/App.vue
@@ -68,9 +68,9 @@ export default {
68
this.showConfiguration = true;
69
this.error = e;
70
notify("pluginError", {
71
- message: `Failed to initialize: ${e.message}`,
72
- error: e.name,
73
- stack: e.stack,
+ message: `Failed to initialize: ${e?.message || e}`,
+ error: e?.name,
+ stack: e?.stack,
74
});
75
} finally {
76
clearTimeout(loadingTimer);
0 commit comments