mirror of
https://github.com/immich-app/immich.git
synced 2024-12-29 15:11:58 +00:00
fix(server): cancel error (#3332)
This commit is contained in:
parent
7316ad5a72
commit
6e953ff5eb
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
import type { ApiError } from '@api';
|
import type { ApiError } from '@api';
|
||||||
import { CanceledError } from 'axios';
|
import * as axios from 'axios';
|
||||||
import { notificationController, NotificationType } from '../components/shared-components/notification/notification';
|
import { notificationController, NotificationType } from '../components/shared-components/notification/notification';
|
||||||
|
|
||||||
export async function getServerErrorMessage(error: unknown) {
|
export async function getServerErrorMessage(error: unknown) {
|
||||||
|
@ -17,7 +17,7 @@ export async function getServerErrorMessage(error: unknown) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function handleError(error: unknown, message: string) {
|
export async function handleError(error: unknown, message: string) {
|
||||||
if (error instanceof CanceledError) {
|
if (error instanceof axios.CanceledError) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue