From 5655e1692e91bce5d4fec17aff9b231f73fd9082 Mon Sep 17 00:00:00 2001 From: boufni95 Date: Wed, 29 Jan 2025 15:14:37 +0000 Subject: [PATCH] fix --- src/services/main/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/main/index.ts b/src/services/main/index.ts index e7c8e41d..08001081 100644 --- a/src/services/main/index.ts +++ b/src/services/main/index.ts @@ -76,7 +76,7 @@ export default class { this.appUserManager = new AppUserManager(this.storage, this.settings, this.applicationManager) this.debitManager = new DebitManager(this.storage, this.lnd, this.applicationManager) this.offerManager = new OfferManager(this.storage, this.lnd, this.applicationManager, this.productManager) - this.webRTC = new webRTC() + this.webRTC = new webRTC(this.storage) }