fixes the webserver default file path issues

This commit is contained in:
Cody Lee
2023-04-13 09:56:24 -05:00
parent 1b7b4385c0
commit c002283387
4 changed files with 5 additions and 5 deletions

View File

@@ -53,10 +53,10 @@ func DefaultObjPath() string {
case "netbsd":
fallthrough
case "openbsd":
return "/usr/local/lib/unifi-poller"
return "/usr/local/lib/unpoller"
default:
// linux and everything else
return "/usr/lib/unifi-poller"
return "/usr/local/lib/unpoller"
}
}