Formatting
All checks were successful
Nix build / build-docker (pull_request) Successful in 2m9s
Nix build / build-docker-arm (pull_request) Successful in 4m53s

This commit is contained in:
Gabriel Simmer 2024-04-30 17:07:14 +01:00
parent 242e1c81a3
commit 9605a9d6f6
Signed by: arch
SSH key fingerprint: SHA256:m3OEcdtrnBpMX+2BDGh/byv3hrCekCLzDYMdvGEKPPQ

View file

@ -23,11 +23,11 @@ import (
"github.com/go-enry/go-enry/v2"
"github.com/google/uuid"
_ "github.com/lib/pq"
"github.com/microcosm-cc/bluemonday"
"github.com/niklasfasching/go-org/org"
"github.com/russross/blackfriday"
_ "modernc.org/sqlite"
_ "github.com/lib/pq"
"tailscale.com/client/tailscale"
"tailscale.com/client/tailscale/apitype"
"tailscale.com/ipn"
@ -826,7 +826,7 @@ func (mch MixedCriticalityHandler) ServeHTTP(w http.ResponseWriter, r *http.Requ
func openDB(dir string, databaseUrl string) (*sql.DB, error) {
dbtype := "sqlite"
dbpath := "file:"+filepath.Join(dir, "data.db")
dbpath := "file:" + filepath.Join(dir, "data.db")
if databaseUrl != "" {
dbtype = "postgres"
dbpath = databaseUrl