Fix app.route initialization

The first argument being an object breaks the forum, since a function can work in `Object.assign` if it is the first argument.
This commit is contained in:
Alexander Skvortsov 2021-12-01 17:05:57 -05:00
parent fb1dd360d7
commit 83b1c4d5f6

View File

@ -80,7 +80,7 @@ export default class ForumApplication extends Application {
routes(this);
this.route = Object.assign({}, (Object.getPrototypeOf(Object.getPrototypeOf(this)) as Application).route.bind(this), makeRouteHelpers(this));
this.route = Object.assign((Object.getPrototypeOf(Object.getPrototypeOf(this)) as Application).route.bind(this), makeRouteHelpers(this));
}
/**