From ce7e5d07c7077fab7742cb721ef4df9582ddf9b4 Mon Sep 17 00:00:00 2001 From: Alireza Ahmadi Date: Wed, 10 Apr 2024 23:27:40 +0200 Subject: [PATCH] fix blackhole type #1149 --- web/assets/js/model/outbound.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/assets/js/model/outbound.js b/web/assets/js/model/outbound.js index 567cbe88..79a5dd92 100644 --- a/web/assets/js/model/outbound.js +++ b/web/assets/js/model/outbound.js @@ -829,7 +829,7 @@ Outbound.FreedomSettings.Fragment = class extends CommonClass { Outbound.BlackholeSettings = class extends CommonClass { constructor(type) { super(); - this.type; + this.type = type; } static fromJson(json={}) {