Skip to content

Commit

Permalink
Fix bug reported in issue #124
Browse files Browse the repository at this point in the history
  • Loading branch information
tonimelisma committed Nov 16, 2020
1 parent 9418e4e commit 41b983e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vips/govips.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,9 @@ func initTypes() {

supportedImageTypes[k] = int(ret) != 0

govipsLog("govips", LogLevelInfo, fmt.Sprintf("registered image type loader type=%s", v))
if supportedImageTypes[k] {
govipsLog("govips", LogLevelInfo, fmt.Sprintf("registered image type loader type=%s", v))
}
}
})
}

0 comments on commit 41b983e

Please sign in to comment.