From c4069e073284a736bd746696137af11f76c27a67 Mon Sep 17 00:00:00 2001 From: pcjones Date: Mon, 15 Apr 2024 03:21:51 +0200 Subject: [PATCH] Change warning text --- UmlautAdaptarr/Services/HttpProxyService.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/UmlautAdaptarr/Services/HttpProxyService.cs b/UmlautAdaptarr/Services/HttpProxyService.cs index 6eabad2..c3f2285 100644 --- a/UmlautAdaptarr/Services/HttpProxyService.cs +++ b/UmlautAdaptarr/Services/HttpProxyService.cs @@ -50,7 +50,8 @@ namespace UmlautAdaptarr.Services var targetInfo = ParseTargetInfo(requestString); if (targetInfo.host != "prowlarr.servarr.com") { - _logger.LogWarning($"Indexer {targetInfo.host} needs to be set to http:// instead of https://"); + _logger.LogWarning($"IMPORTANT! {Environment.NewLine} Indexer {targetInfo.host} needs to be set to http:// instead of https:// {Environment.NewLine}" + + $"UmlautAdaptarr will not work for {targetInfo.host}!"); } using var targetSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); try