fix: get op returning index data

This commit is contained in:
b1ek 2024-07-28 15:08:22 +10:00
parent db13993e2f
commit b733f1f1d0
Signed by: blek
GPG Key ID: 14546221E3595D0C
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ export async function proxyGetOp(
): Promise<GetOperationReturn> {
let httpRes: KyResponse
try {
httpRes = await proxyRequest(url, 'index', search, data)
httpRes = await proxyRequest(url, 'get', search, data)
if (httpRes.status !== 200) {
return 404
}