1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-21 23:32:27 +00:00

Update the wanted section for missing and cutoff unmet

(cherry picked from commit 9b4ff657af41e67aeb5866ee3056f1a8f2a901ea)
This commit is contained in:
Bogdan 2024-05-14 00:24:37 +03:00
parent d27b062d6a
commit 563db9231e

View file

@ -266,7 +266,7 @@ class SignalRConnector extends Component {
handleWantedCutoff = (body) => {
if (body.action === 'updated') {
this.props.dispatchUpdateItem({
section: 'cutoffUnmet',
section: 'wanted.cutoffUnmet',
updateOnly: true,
...body.resource
});
@ -276,7 +276,7 @@ class SignalRConnector extends Component {
handleWantedMissing = (body) => {
if (body.action === 'updated') {
this.props.dispatchUpdateItem({
section: 'missing',
section: 'wanted.missing',
updateOnly: true,
...body.resource
});