Skip to content

Commit

Permalink
Rename variable
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanLeRoy committed Nov 14, 2024
1 parent 7b3ab5e commit be80cb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/services/DatabaseService/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ export default abstract class DatabaseService {
}

public async prepareSourceMetadata(sourceMetadata: Source): Promise<void> {
const isOldSource = sourceMetadata.name === this.sourceMetadataName;
if (isOldSource) {
const isPreviousSource = sourceMetadata.name === this.sourceMetadataName;
if (isPreviousSource) {
return;
}

Expand Down

0 comments on commit be80cb2

Please sign in to comment.