Fixed random \n in the Yeet URL

This commit is contained in:
barelyprofessional
2025-05-16 13:50:31 -05:00
parent 32ff1fecd3
commit a989bb79a6

View File

@@ -11,7 +11,7 @@ public class Yeet : IDisposable
{
private Logger _logger = LogManager.GetCurrentClassLogger();
private WebsocketClient _wsClient;
private Uri _wsUri = new("wss://api.yeet.com/room-service/socket/?EIO=4&transport=websocket\n");
private Uri _wsUri = new("wss://api.yeet.com/room-service/socket/?EIO=4&transport=websocket");
private int _reconnectTimeout = 30;
private string? _proxy;
public delegate void OnYeetBetEventHandler(object sender, YeetCasinoBetModel data);