Skip to content

Commit

Permalink
fix: lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
malmen237 committed Aug 30, 2024
1 parent e8e091e commit fa2a93b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/api/manager/job/syncInventory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ export async function runSyncInventory() {

const databaseStatus = inventorySource.status;
const apiStatus = apiSource.status;
const isStatusGoneAndSetToPurge = databaseStatus === 'purge' && apiStatus === 'gone';
const isStatusGoneAndSetToPurge =
databaseStatus === 'purge' && apiStatus === 'gone';

// Keep all old fields from the inventory source (name, tags, id, audio_stream etc), but update the status
return {
Expand Down

0 comments on commit fa2a93b

Please sign in to comment.