Skip to content

Commit b8f6b5c

Browse files
authored
Update 1.88.2 (#332)
# PR Checklist - [ ] Did you check if it works normally in all models? *ignore this when it dosen't uses models* - [ ] Did you check if it works normally in all of web, local and node hosted versions? if it dosen't, did you blocked it in those versions? - [ ] Did you added a type def? # Description
2 parents ff0bd4e + 65c148f commit b8f6b5c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src-tauri/tauri.conf.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"package": {
1010
"productName": "RisuAI",
11-
"version": "1.88.1"
11+
"version": "1.88.2"
1212
},
1313
"tauri": {
1414
"allowlist": {

src/ts/storage/database.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import type { OobaChatCompletionRequestParams } from '../model/ooba';
1515

1616
export const DataBase = writable({} as any as Database)
1717
export const loadedStore = writable(false)
18-
export let appVer = "1.88.1"
18+
export let appVer = "1.88.2"
1919
export let webAppSubVer = ''
2020

2121
export function setDatabase(data:Database){

src/ts/storage/globalApi.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ async function fetchWithProxy(url: string, arg: GlobalFetchArgs): Promise<Global
672672

673673
const body = arg.body instanceof URLSearchParams ? arg.body.toString() : JSON.stringify(arg.body);
674674

675-
const response = await fetch(furl, { body, headers, method: arg.method, signal: arg.abortSignal });
675+
const response = await fetch(furl, { body, headers, method: arg.method ?? "POST", signal: arg.abortSignal });
676676
const isSuccess = response.ok && response.status >= 200 && response.status < 300;
677677

678678
if (arg.rawResponse) {

version.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version":"1.88.1"}
1+
{"version":"1.88.2"}

0 commit comments

Comments
 (0)