Skip to content

Commit

Permalink
Merge pull request #8 from Eyevinn/fix-bug-incorrect-status-gone
Browse files Browse the repository at this point in the history
fix: bug solve for incorrect gone assignment
  • Loading branch information
malmen237 authored Sep 5, 2024
2 parents fb00929 + 2762f91 commit d53ea8a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/api/manager/job/syncInventory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,7 @@ export async function runSyncInventory() {
const apiSource = apiSources.find((source) => {
return (
source.ingest_name === inventorySource.ingest_name &&
source.ingest_source_name === inventorySource.ingest_source_name &&
source.ingest_type === inventorySource.type
source.ingest_source_name === inventorySource.ingest_source_name
);
});
if (!apiSource) {
Expand Down

0 comments on commit d53ea8a

Please sign in to comment.