This commit is contained in:
Bogdan 2026-04-25 19:55:11 +03:00 committed by GitHub
commit 9229ae37c1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -302,12 +302,7 @@ function SignalRListener() {
if (body.action === 'updated') {
const updatedItem = body.resource as Series;
updateQueryClientItem(
queryClient,
['/series'],
updatedItem,
false // Don't add the series to the list if it doesn't exist. Series should already be in the list since they are included in the calendar and series details.
);
updateQueryClientItem(queryClient, ['/series'], updatedItem, true);
repopulatePage('seriesUpdated');
} else if (body.action === 'deleted') {