Not receiving streaming data - .Net

It’s just a console app that I’m making and when I tested last week, I was getting Minute subscription for individual symbols and the whole market.

I’m not getting anything now, nor any errors. I have a live funded account and I’ve tried with both my live and paper account and I’ve tried Quote Data as well. I have little experience with websockets so any advice is appreciated.

var _dataStreamingClient = Environments.Live.GetAlpacaDataStreamingClient(new SecretKey(API_KEY, API_SECRET));

await _dataStreamingClient.ConnectAndAuthenticateAsync();

var sub = _dataStreamingClient.GetMinuteAggSubscription();
sub.Received += async (agg) =>
{
Console.WriteLine(“Do the thing”); ////Nothings happening here now.
};
_dataStreamingClient.Subscribe(sub);