You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The example code in README shows mismatched types at string if resolution == "" for me (Golang 1.19).
If change it to if resolution == nil since pointer zero value is doesn't.
The example code in README shows mismatched types at string
if resolution == ""for me (Golang 1.19).If change it to
if resolution == nilsince pointer zero value is doesn't.