Use matched stash id boolean as the name suggests (#3488)

This commit is contained in:
CJ
2023-02-27 17:09:41 -06:00
committed by GitHub
parent 078f99a7ec
commit 1d13f46e23
2 changed files with 4 additions and 1 deletions

View File

@@ -35,7 +35,9 @@ const PerformerResult: React.FC<IPerformerResultProps> = ({
const matchedPerformer = performerData?.findPerformer; const matchedPerformer = performerData?.findPerformer;
const matchedStashID = matchedPerformer?.stash_ids.some( const matchedStashID = matchedPerformer?.stash_ids.some(
(stashID) => stashID.endpoint === endpoint && stashID.stash_id (stashID) =>
stashID.endpoint === endpoint &&
stashID.stash_id === performer.remote_site_id
); );
const handlePerformerSelect = (performers: SelectObject[]) => { const handlePerformerSelect = (performers: SelectObject[]) => {

View File

@@ -13,6 +13,7 @@
* Overhauled and improved HLS streaming. ([#3274](https://github.com/stashapp/stash/pull/3274)) * Overhauled and improved HLS streaming. ([#3274](https://github.com/stashapp/stash/pull/3274))
### 🐛 Bug fixes ### 🐛 Bug fixes
* Fixed incorrect performer with identical name being matched when scraping from stash-box. ([#3488](https://github.com/stashapp/stash/pull/3488))
* Fixed scene cover not being included when submitting file-less scenes to stash-box. ([#3465](https://github.com/stashapp/stash/pull/3465)) * Fixed scene cover not being included when submitting file-less scenes to stash-box. ([#3465](https://github.com/stashapp/stash/pull/3465))
* Fixed URL not being during stash-box scrape if the Studio URL is not set. ([#3439](https://github.com/stashapp/stash/pull/3439)) * Fixed URL not being during stash-box scrape if the Studio URL is not set. ([#3439](https://github.com/stashapp/stash/pull/3439))
* Fixed generating previews for variable frame rate videos. ([#3376](https://github.com/stashapp/stash/pull/3376)) * Fixed generating previews for variable frame rate videos. ([#3376](https://github.com/stashapp/stash/pull/3376))