Skip to content

Commit

Permalink
remove leading slash
Browse files Browse the repository at this point in the history
  • Loading branch information
wkloucek committed Aug 18, 2022
1 parent fe53db9 commit 70bce6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/frontend/pkg/revaconfig/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func FrontendConfigFromStruct(cfg *config.Config) (map[string]interface{}, error
if err != nil {
return nil, err
}
webURL.Path = path.Join(webURL.Path, "/external")
webURL.Path = path.Join(webURL.Path, "external")
webOpenInAppURL := webURL.String()

archivers := []map[string]interface{}{
Expand Down

0 comments on commit 70bce6b

Please sign in to comment.