Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
mceachen committed Jul 20, 2024
1 parent 9f484dd commit 2391caa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ImageDataHashTag.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export interface ImageDataHashTag {
/**
* This is calculated by ExifTool to be the MD5, SHA256, or SHA512 hash of
* just the image data, excluding metadata.
* just the image data, excluding metadata.
*
* This tag is only included if the default `ExifToolOptions.imageHashType`
* value is overridden with a valid string value.
Expand Down
2 changes: 1 addition & 1 deletion src/ReadTask.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export class ReadTask extends ExifToolTask<Tags> {
}

#tagName(k: string): string {
return this.degroup ? k.split(":")[1] ?? k : k
return this.degroup ? (k.split(":")[1] ?? k) : k
}

#parseTags(): Tags {
Expand Down

0 comments on commit 2391caa

Please sign in to comment.