Fix #174 auth not being written to file for ntfy.

This commit is contained in:
Glax 2024-04-25 21:29:05 +02:00
parent d52213002e
commit c6d0168d2f

View File

@ -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();