From c6d0168d2f37097dd06164fb8f4524b3c0bc007a Mon Sep 17 00:00:00 2001 From: Glax Date: Thu, 25 Apr 2024 21:29:05 +0200 Subject: [PATCH] Fix #174 auth not being written to file for ntfy. --- Tranga/NotificationConnectors/Ntfy.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tranga/NotificationConnectors/Ntfy.cs b/Tranga/NotificationConnectors/Ntfy.cs index a7fed50..fef0f90 100644 --- a/Tranga/NotificationConnectors/Ntfy.cs +++ b/Tranga/NotificationConnectors/Ntfy.cs @@ -5,9 +5,9 @@ namespace Tranga.NotificationConnectors; public class Ntfy : NotificationConnector { - // ReSharper disable once MemberCanBePrivate.Global + // ReSharper disable twice MemberCanBePrivate.Global public string endpoint { get; init; } - private string auth { get; init; } + public string auth { get; init; } private const string Topic = "tranga"; private readonly HttpClient _client = new();