Skip to content

Commit

Permalink
fixed filepath.join contained concatenating instead comma separation
Browse files Browse the repository at this point in the history
  • Loading branch information
mindiae committed Aug 30, 2024
1 parent 22d1f65 commit 5f7949d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/modulesHandler.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type InfoRow struct {
}

func ModulesHandler(c echo.Context) error {
directoryPath := filepath.Join(APP_ROOT + "database")
directoryPath := filepath.Join(APP_ROOT, "database")

var modules []map[string]string

Expand Down

0 comments on commit 5f7949d

Please sign in to comment.