Upgrade to Tauri 2.0 (#23)

This commit is contained in:
Gregory Schier
2024-05-04 14:14:19 -07:00
committed by GitHub
parent 7f02060b9c
commit 896e3d5831
128 changed files with 20477 additions and 4114 deletions

View File

@@ -1,4 +1,4 @@
import { readBinaryFile, readTextFile } from '@tauri-apps/api/fs';
import { readFile, readTextFile } from '@tauri-apps/plugin-fs';
import type { HttpResponse } from './models';
export async function getResponseBodyText(response: HttpResponse): Promise<string | null> {
@@ -10,7 +10,7 @@ export async function getResponseBodyText(response: HttpResponse): Promise<strin
export async function getResponseBodyBlob(response: HttpResponse): Promise<Uint8Array | null> {
if (response.bodyPath) {
return readBinaryFile(response.bodyPath);
return readFile(response.bodyPath);
}
return null;
}