mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 18:08:48 -07:00
Remove Axios import in web hook.ts
This commit is contained in:
parent
bece6253d5
commit
229b009b7f
@ -1,7 +1,6 @@
|
||||
import type { GetSession, Handle } from '@sveltejs/kit';
|
||||
import * as cookie from 'cookie';
|
||||
import { api } from '@api';
|
||||
import AxiosError from 'axios';
|
||||
|
||||
export const handle: Handle = async ({ event, resolve }) => {
|
||||
const cookies = cookie.parse(event.request.headers.get('cookie') || '');
|
||||
@ -31,12 +30,7 @@ export const handle: Handle = async ({ event, resolve }) => {
|
||||
|
||||
return response;
|
||||
} catch (error) {
|
||||
if (error instanceof AxiosError) {
|
||||
console.log('Error validating token');
|
||||
return await resolve(event);
|
||||
}
|
||||
|
||||
console.log('Error parsing session');
|
||||
console.log('Error [handle]', error);
|
||||
return await resolve(event);
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user