mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
Use matched stash id boolean as the name suggests (#3488)
This commit is contained in:
@@ -35,7 +35,9 @@ const PerformerResult: React.FC<IPerformerResultProps> = ({
|
||||
|
||||
const matchedPerformer = performerData?.findPerformer;
|
||||
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[]) => {
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
* Overhauled and improved HLS streaming. ([#3274](https://github.com/stashapp/stash/pull/3274))
|
||||
|
||||
### 🐛 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 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))
|
||||
|
||||
Reference in New Issue
Block a user