Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sushain97 committed Dec 11, 2023
1 parent 87f3fa2 commit a01cd59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server/src/domain/metadata/metadata.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ export class MetadataService {

this.logger.verbose('Exif Tags', tags);

let exifData = {
const exifData = {
// altitude: tags.GPSAltitude ?? null,
assetId: asset.id,
bitsPerSample: this.getBitsPerSample(tags),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export class DropNullIslandLatLong1702257380990 implements MigrationInterface {
);
}

public async down(queryRunner: QueryRunner): Promise<void> {
public async down(): Promise<void> {
// There's no way to know which assets used to have 0/0 lat-long if we've
// already run this migration.
}
Expand Down

0 comments on commit a01cd59

Please sign in to comment.