mirror of
https://github.com/Radarr/Radarr
synced 2025-03-03 10:26:54 +00:00
parent
0b113b9bab
commit
d30c1b1385
1 changed files with 2 additions and 0 deletions
|
@ -45,11 +45,13 @@ class Queue extends Component {
|
|||
componentDidUpdate(prevProps) {
|
||||
const {
|
||||
items,
|
||||
isFetching,
|
||||
isMoviesFetching
|
||||
} = this.props;
|
||||
|
||||
if (
|
||||
(!isMoviesFetching && prevProps.isMoviesFetching) ||
|
||||
(!isFetching && prevProps.isFetching) ||
|
||||
(hasDifferentItems(prevProps.items, items) && !items.some((e) => e.movieId))
|
||||
) {
|
||||
this.setState((state) => {
|
||||
|
|
Loading…
Reference in a new issue