From 25dc6b9b08813478d7b0be1925bf9b0d293c94da Mon Sep 17 00:00:00 2001 From: salwan albahadly Date: Wed, 9 Jun 2021 12:45:31 +1200 Subject: [PATCH] when set Runtime as WebAssembly, IDM app recognize oqtane.zip and download this file and this make an issue and oqtane not work correctly and for this I set diffrent extention that IDM cant recognize it --- Oqtane.Server/Controllers/InstallationController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Oqtane.Server/Controllers/InstallationController.cs b/Oqtane.Server/Controllers/InstallationController.cs index 143150df..efcff0c2 100644 --- a/Oqtane.Server/Controllers/InstallationController.cs +++ b/Oqtane.Server/Controllers/InstallationController.cs @@ -82,7 +82,7 @@ namespace Oqtane.Controllers { if (_config.GetSection("Runtime").Value == "WebAssembly") { - return File(GetAssemblies(), System.Net.Mime.MediaTypeNames.Application.Octet, "oqtane.zip"); + return File(GetAssemblies(), System.Net.Mime.MediaTypeNames.Application.Octet, "oqtane.oqbz"); } else {