mirror of https://github.com/morpheus65535/bazarr
no log: remove debug code
This commit is contained in:
parent
b4037442b1
commit
a04e20bdb0
|
@ -107,9 +107,6 @@ const Table: FunctionComponent<Props> = ({ movie, profile }) => {
|
|||
return item;
|
||||
});
|
||||
|
||||
console.log(movie.subtitles);
|
||||
console.log(profileItems);
|
||||
|
||||
let raw_subtitles = movie.subtitles;
|
||||
if (onlyDesired) {
|
||||
raw_subtitles = intersectionWith(
|
||||
|
@ -119,8 +116,6 @@ const Table: FunctionComponent<Props> = ({ movie, profile }) => {
|
|||
);
|
||||
}
|
||||
|
||||
console.log(raw_subtitles);
|
||||
|
||||
return [...raw_subtitles, ...missing];
|
||||
}, [movie.missing_subtitles, movie.subtitles, onlyDesired, profileItems]);
|
||||
|
||||
|
|
Loading…
Reference in New Issue