Fix GetCollections() call

This commit is contained in:
Matt Baer 2020-01-07 16:51:40 -05:00
parent be76f865a4
commit e5671cd1e6
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ func viewImport(app *App, u *User, w http.ResponseWriter, r *http.Request) error
// Fetch extra user data
p := NewUserPage(app, r, u, "Import", nil)
c, err := app.db.GetCollections(u)
c, err := app.db.GetCollections(u, app.Config().App.Host)
if err != nil {
return impart.HTTPError{http.StatusInternalServerError, fmt.Sprintf("unable to fetch collections: %v", err)}
}