Skip to content

Commit

Permalink
Added missing metadata match case - exclude file extension
Browse files Browse the repository at this point in the history
  • Loading branch information
optimumchaos committed Jan 14, 2024
1 parent 8bff221 commit da9f243
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions googlePhotoMetadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ func getMetadataFilenames(picFilePath string, matchLivePhotos bool) []string {
possibilities := []string{
noExtension + upperExt + ".json",
noExtension + lowerExt + ".json",
noExtension + ".json",
}
if matchLivePhotos {
possibilities = append(possibilities,
Expand Down
2 changes: 1 addition & 1 deletion picsort.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"time"
)

const version = "0.09"
const version = "0.10"

const flagDedupeLazy = "lazy"
const flagDedupeEager = "eager"
Expand Down

0 comments on commit da9f243

Please sign in to comment.