Remvoed secrets for Twitch since they don't work

This commit is contained in:
Martin Barker
2023-01-28 02:13:17 +00:00
parent 36ad4fff02
commit b09eb0a641
4 changed files with 40 additions and 34 deletions

View File

@@ -1,6 +1,4 @@
using ABI.System;
using Microsoft.Extensions.Configuration;
using System.Diagnostics;
using System.Diagnostics;
using System.IO;
using System.Net;
using System.Text;
@@ -14,9 +12,8 @@ namespace TwitchDesktopNotifications.Core
internal class TwitchFetcher
{
private TwitchFetcher() {
var config = new ConfigurationBuilder().AddUserSecrets<Program>().Build();
TwitchClientID = config["TwitchClientID"];
TwitchClientSecret = config["TwitchClientSecret"];
TwitchClientID = "";
TwitchClientSecret = "";
}
public static TwitchFetcher instance { get; private set; }