Skip to content

Commit

Permalink
fix: Properly pass storageManager
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Knorr <[email protected]>
  • Loading branch information
juliusknorr committed Sep 12, 2024
1 parent d1c8d39 commit ffa974c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion websocket_server/ServerManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default class ServerManager {
this.apiService = new ApiService(this.tokenGenerator)
this.storageManager = StorageManager.create(this.config.storageStrategy, this.apiService)
this.roomDataManager = new RoomDataManager(this.storageManager, this.apiService)
this.appManager = new AppManager(this.roomDataManager)
this.appManager = new AppManager(this.storageManager)
this.server = this.createConfiguredServer(this.appManager.getApp())
this.socketManager = new SocketManager(this.server, this.roomDataManager, this.storageManager)
}
Expand Down

0 comments on commit ffa974c

Please sign in to comment.