ObserverHerb / Celeste

A Twitch bot written in C++/Qt with a focus on multimedia and native performance
GNU General Public License v3.0
6 stars 0 forks source link

Network abstraction broke network calls #181

Closed ObserverHerb closed 6 months ago

ObserverHerb commented 6 months ago

Now that the network abstraction is a class, a number of network calls create the object just to throw it away before the call is actually made.

Change the constructor to protected so only the static Send() function can be used to make a network call.