Skip to content

Commit

Permalink
lowered proxied env var
Browse files Browse the repository at this point in the history
  • Loading branch information
CoolFool committed Feb 2, 2022
1 parent fef1f66 commit af8984b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flareUp",
"description": "Cloudflare DynamicDNS service for router",
"description": "Self-Hosted Cloudflare based DynamicDNS service for router",
"repository": "https://github.com/CoolFool/flareup",
"env":{
"USERNAME":{
Expand Down
2 changes: 1 addition & 1 deletion cmd/flareup/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func main() {
log.Fatal("Environment variables not set")
}
if isProxy != "" {
proxied, _ = strconv.ParseBool(isProxy)
proxied, _ = strconv.ParseBool(strings.ToLower(isProxy))
}
if port == "" {
port = ":5335"
Expand Down

0 comments on commit af8984b

Please sign in to comment.