Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/components/modals/PacketDetailsModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,9 @@ const refreshContactLookup = async () => {
contactLookupLoading.value = true;
try {
const [contactsResponse, advertResponses] = await Promise.all([
ApiService.get('/companion/contacts'),
// A repeater with no companion bridge returns 503 here; treat it like the
// advert lookups below so advert-based names still resolve.
ApiService.get('/companion/contacts').catch(() => null),
Promise.all(
ADVERT_CONTACT_TYPES.map((contactType) =>
ApiService.get('/adverts_by_contact_type', {
Expand Down