merge: Bridged error message for when you try search for a post and it fails (!421)

View MR for information: https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/421

Approved-by: dakkar <dakkar@thenautilus.net>
Approved-by: Marie <marie@kaifa.ch>
This commit is contained in:
Marie 2024-02-19 08:33:10 +00:00
commit 764bbcf05b
1 changed files with 11 additions and 4 deletions

View File

@ -109,10 +109,17 @@ export function promiseDialog<T extends Promise<any>>(
if (onFailure) {
onFailure(err);
} else {
alert({
type: 'error',
text: err,
});
if (err.message) {
alert({
type: 'error',
text: err.message,
});
} else {
alert({
type: 'error',
text: err,
});
}
}
});