We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent daeffb2 commit 23ac2efCopy full SHA for 23ac2ef
app/store/plugin.ts
@@ -199,7 +199,7 @@ export const usePluginStore = createPersistStore(
199
200
getAsTools(ids: string[]) {
201
const plugins = get().plugins;
202
- const selected = ids
+ const selected = (ids || [])
203
.map((id) => plugins[id])
204
.filter((i) => i)
205
.map((p) => FunctionToolService.add(p));
src-tauri/tauri.conf.json
@@ -9,7 +9,7 @@
9
},
10
"package": {
11
"productName": "NextChat",
12
- "version": "2.15.0"
+ "version": "2.15.1"
13
14
"tauri": {
15
"allowlist": {
0 commit comments