Compare commits

..

No commits in common. "808bac398a069da3d9518ea2b553be11197a77b4" and "d3efb1c8dd0781866595e21817f8282d3ebbabb8" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ var pool *pgxpool.Pool
func getDbPool() *pgxpool.Pool {
// Setup Database
dburl := "postgres://" + os.Getenv("POSTGRES_USER") + ":" + os.Getenv("POSTGRES_PASSWORD") + "@" + os.Getenv("POSTGRES_HOSTNAME") + "/" + os.Getenv("POSTGRES_DB")
dburl := "postgres://" + os.Getenv("POSTGRES_USER") + ":" +u os.Getenv("POSTGRES_PASSWORD") + "@" + os.Getenv("POSTGRES_HOSTNAME") + "/" + os.Getenv("POSTGRES_DB")
pool, err := pgxpool.Connect(context.Background(), dburl)
if err != nil {
log.Fatal("Unable to connect to database:", err)

View File

@ -383,7 +383,7 @@ func getGlobalGraph(w http.ResponseWriter, r *http.Request) {
line.SetXAxis(dates).
AddSeries("Post Count", generateLineItems(counts)).
SetSeriesOptions(charts.WithLineChartOpts(opts.LineChart{Smooth: opts.Bool(false)}))
SetSeriesOptions(charts.WithLineChartOpts(opts.LineChart{Smooth: false}))
line.Render(w)
}