Use same lock values as mobile clients
[ProtonMail-WebClient.git] / packages / shared / lib / broadcast / helper.ts
blob8f2eb02d355844250bfa19dc36c9d27949214394
1 import { getApiError, getApiErrorMessage } from '../api/helpers/apiErrorHelper';
2 import type { GenericErrorPayload } from './interface';
4 export const getGenericErrorPayload = (e: any): GenericErrorPayload => {
5     const apiError = getApiError(e);
6     return {
7         message: getApiErrorMessage(e) || e.message || 'Unknown error',
8         ...apiError,
9     };