Skip to content

Commit

Permalink
normalize output
Browse files Browse the repository at this point in the history
  • Loading branch information
Dawid Ciepiela committed Mar 3, 2024
1 parent 9be4646 commit 052c663
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cmd/bing-wallpaper-changer/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ var config struct {
const remoteRepository = "sarumaj/bing-wallpaper-changer"

// BuildDate is the date when the binary was built.
var BuildDate = "2024-02-20 08:09:08 UTC"
var BuildDate = "2024-03-03 17:00:14 UTC"

// Version is the version of the binary.
var Version = "v1.0.8"
var Version = "v1.0.10"

func main() {
checkVersionOrUpdate()
Expand Down
2 changes: 1 addition & 1 deletion pkg/core/crawl.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ func annotateDescriptionV2(description string) (string, error) {
return "", err
}

return converted.Furiganize(), nil
return k.Normalize(converted.Furiganize())
}

// DownloadAndDecode fetches the Bing wallpaper and decodes it.
Expand Down

0 comments on commit 052c663

Please sign in to comment.