Skip to content

Commit e743d1b

Browse files
authored
Release 16.0.1
2 parents 1f8e057 + cc4459f commit e743d1b

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# GameVault Backend Server Changelog
22

3+
## 16.0.1
4+
5+
### Changes
6+
7+
- [#373](https://github.com/Phalcode/gamevault-backend/issues/373) Fixed server not starting when WebUI is disabled. But who disables this awesome new feature anyway?
8+
9+
### Thanks
10+
11+
- @Elekam
12+
313
## 16.0.0
414

515
### Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gamevault-backend",
3-
"version": "16.0.0",
3+
"version": "16.0.1",
44
"description": "the self-hosted gaming platform for drm-free games",
55
"author": "Alkan Alper, Schäfer Philip GbR / Phalcode",
66
"private": true,

src/app.module.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,13 @@ import { UsersModule } from "./modules/users/users.module";
3737
EventEmitterModule.forRoot(),
3838
GarbageCollectionModule,
3939
StatusModule,
40-
configuration.SERVER.WEB_UI_ENABLED &&
41-
ServeStaticModule.forRoot({
42-
rootPath: join(__dirname, "..", "assets/frontend"),
43-
}),
40+
...(configuration.SERVER.WEB_UI_ENABLED
41+
? [
42+
ServeStaticModule.forRoot({
43+
rootPath: join(__dirname, "..", "assets/frontend"),
44+
}),
45+
]
46+
: []),
4447
],
4548
providers: [
4649
{

0 commit comments

Comments
 (0)